mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
39 lines
1 KiB
Nix
39 lines
1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, libxml2, gtk2, curl, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gosmore";
|
|
version = "unstable-2014-03-17";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "openstreetmap";
|
|
repo = "svn-archive";
|
|
rev = "89b1fbfbc9e9a8b5e78795fd40bdfa60550322fc";
|
|
sparseCheckout = [ "applications/rendering/gosmore" ];
|
|
hash = "sha256-MfuJVsyGWspGNAFD6Ktbbyawb4bPwUITe7WkyFs6JxI=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/applications/rendering/gosmore";
|
|
|
|
buildInputs = [ libxml2 gtk2 curl ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
prePatch = ''
|
|
sed -e '/curl.types.h/d' -i *.{c,h,hpp,cpp}
|
|
sed -e "24i #include <ctime>" -e "s/data/dat/g" -i jni/libgosm.cpp
|
|
'';
|
|
|
|
patches = [ ./pointer_int_comparison.patch ];
|
|
patchFlags = [ "-p1" "--binary" ]; # patch has dos style eol
|
|
|
|
meta = with lib; {
|
|
description = "Open Street Map viewer";
|
|
homepage = "https://sourceforge.net/projects/gosmore/";
|
|
maintainers = with maintainers; [
|
|
raskin
|
|
];
|
|
platforms = platforms.linux;
|
|
license = licenses.bsd2;
|
|
};
|
|
}
|