nixpkgs/pkgs/applications/misc/gosmore/default.nix

31 lines
707 B
Nix
Raw Normal View History

2014-11-19 12:30:59 +00:00
{ stdenv, fetchsvn, libxml2, gtk, curl, pkgconfig } :
2014-11-19 12:30:59 +00:00
let
version = "30811";
in
2014-11-19 12:30:59 +00:00
stdenv.mkDerivation {
name = "gosmore-r${version}";
src = fetchsvn {
url = http://svn.openstreetmap.org/applications/rendering/gosmore;
2014-12-09 11:40:21 +00:00
sha256 = "0d8ddfa0nhz51ambwj9y5jjbizl9y9w44sviisk3ysqvn8q0phds";
2014-11-19 12:30:59 +00:00
rev = "${version}";
};
2014-11-19 12:30:59 +00:00
buildInputs = [ libxml2 gtk curl ];
2014-11-19 12:30:59 +00:00
nativeBuildInputs = [ pkgconfig ];
2014-11-19 12:30:59 +00:00
prePatch = ''
sed -e '/curl.types.h/d' -i *.{c,h,hpp,cpp}
2014-11-19 12:30:59 +00:00
'';
2014-11-19 12:30:59 +00:00
meta = with stdenv.lib; {
description = "Open Street Map viewer";
2014-11-19 12:30:59 +00:00
homepage = http://sourceforge.net/projects/gosmore/;
maintainers = with maintainers; [
raskin
];
2014-11-19 12:30:59 +00:00
platforms = platforms.linux;
};
}