2014-11-19 12:30:59 +00:00
|
|
|
{ stdenv, fetchsvn, libxml2, gtk, curl, pkgconfig } :
|
2010-06-11 22:34:51 +00:00
|
|
|
|
2014-11-19 12:30:59 +00:00
|
|
|
let
|
2015-12-07 14:23:23 +00:00
|
|
|
version = "31801";
|
2010-06-11 22:34:51 +00:00
|
|
|
in
|
2014-11-19 12:30:59 +00:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "gosmore-r${version}";
|
2015-12-14 15:33:51 +00:00
|
|
|
# the gosmore svn repository does not lock revision numbers of its externals
|
|
|
|
# so we explicitly disable them to avoid breaking the hash
|
|
|
|
# especially as the externals appear to be unused
|
2010-06-11 22:34:51 +00:00
|
|
|
src = fetchsvn {
|
|
|
|
url = http://svn.openstreetmap.org/applications/rendering/gosmore;
|
2015-12-14 15:33:51 +00:00
|
|
|
sha256 = "0qsckpqx7i7f8gkqhkzdamr65250afk1rpnh3nbman35kdv3dsxi";
|
2014-11-19 12:30:59 +00:00
|
|
|
rev = "${version}";
|
2015-12-14 15:33:51 +00:00
|
|
|
ignoreExternals = true;
|
2014-11-19 12:30:59 +00:00
|
|
|
};
|
2010-06-11 22:34:51 +00:00
|
|
|
|
2014-11-19 12:30:59 +00:00
|
|
|
buildInputs = [ libxml2 gtk curl ];
|
2010-06-11 22:34:51 +00:00
|
|
|
|
2014-11-19 12:30:59 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2011-11-08 10:19:50 +00:00
|
|
|
|
2014-11-19 12:30:59 +00:00
|
|
|
prePatch = ''
|
2011-11-08 10:19:50 +00:00
|
|
|
sed -e '/curl.types.h/d' -i *.{c,h,hpp,cpp}
|
2014-11-19 12:30:59 +00:00
|
|
|
'';
|
2010-06-11 22:34:51 +00:00
|
|
|
|
2014-11-19 12:30:59 +00:00
|
|
|
meta = with stdenv.lib; {
|
2010-06-11 22:34:51 +00:00
|
|
|
description = "Open Street Map viewer";
|
2014-11-19 12:30:59 +00:00
|
|
|
homepage = http://sourceforge.net/projects/gosmore/;
|
|
|
|
maintainers = with maintainers; [
|
|
|
|
raskin
|
2010-06-11 22:34:51 +00:00
|
|
|
];
|
2014-11-19 12:30:59 +00:00
|
|
|
platforms = platforms.linux;
|
2010-06-11 22:34:51 +00:00
|
|
|
};
|
|
|
|
}
|