biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / by-name / go / gosmore / package.nix
blobdaa5553d0c0aef45d29ac5b80bd0092a8a3f5767
1 { lib, stdenv, fetchFromGitHub, libxml2, gtk2, curl, pkg-config }:
3 stdenv.mkDerivation rec {
4   pname = "gosmore";
5   version = "unstable-2014-03-17";
7   src = fetchFromGitHub {
8     owner = "openstreetmap";
9     repo = "svn-archive";
10     rev = "89b1fbfbc9e9a8b5e78795fd40bdfa60550322fc";
11     sparseCheckout = [ "applications/rendering/gosmore" ];
12     hash = "sha256-MfuJVsyGWspGNAFD6Ktbbyawb4bPwUITe7WkyFs6JxI=";
13   };
15   sourceRoot = "${src.name}/applications/rendering/gosmore";
17   buildInputs = [ libxml2 gtk2 curl ];
19   nativeBuildInputs = [ pkg-config ];
21   prePatch = ''
22     sed -e '/curl.types.h/d' -i *.{c,h,hpp,cpp}
23     sed -e "24i #include <ctime>" -e "s/data/dat/g" -i jni/libgosm.cpp
24   '';
26   patches = [ ./pointer_int_comparison.patch ];
27   patchFlags = [ "-p1" "--binary" ]; # patch has dos style eol
29   meta = with lib; {
30     description = "Open Street Map viewer";
31     mainProgram = "gosmore";
32     homepage = "https://sourceforge.net/projects/gosmore/";
33     maintainers = with maintainers; [
34       raskin
35     ];
36     platforms = platforms.linux;
37     license = licenses.bsd2;
38   };