2021-01-17 02:09:27 +00:00
|
|
|
{ lib, stdenv, fetchsvn, libxml2, gtk2, curl, pkg-config } :
|
2010-06-11 23:34:51 +01:00
|
|
|
|
2014-11-19 12:30:59 +00:00
|
|
|
let
|
2015-12-07 14:23:23 +00:00
|
|
|
version = "31801";
|
2010-06-11 23:34:51 +01: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 23:34:51 +01:00
|
|
|
src = fetchsvn {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "http://svn.openstreetmap.org/applications/rendering/gosmore";
|
2015-12-14 15:33:51 +00:00
|
|
|
sha256 = "0qsckpqx7i7f8gkqhkzdamr65250afk1rpnh3nbman35kdv3dsxi";
|
2019-09-09 00:38:31 +01:00
|
|
|
rev = version;
|
2015-12-14 15:33:51 +00:00
|
|
|
ignoreExternals = true;
|
2014-11-19 12:30:59 +00:00
|
|
|
};
|
2010-06-11 23:34:51 +01:00
|
|
|
|
2016-09-11 22:24:51 +01:00
|
|
|
buildInputs = [ libxml2 gtk2 curl ];
|
2010-06-11 23:34:51 +01:00
|
|
|
|
2021-01-17 02:09:27 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
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
|
|
|
'';
|
2018-03-17 23:45:53 +00:00
|
|
|
|
|
|
|
patches = [ ./pointer_int_comparison.patch ];
|
|
|
|
patchFlags = [ "-p1" "--binary" ]; # patch has dos style eol
|
2020-06-11 11:11:56 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2010-06-11 23:34:51 +01:00
|
|
|
description = "Open Street Map viewer";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://sourceforge.net/projects/gosmore/";
|
2014-11-19 12:30:59 +00:00
|
|
|
maintainers = with maintainers; [
|
|
|
|
raskin
|
2010-06-11 23:34:51 +01:00
|
|
|
];
|
2014-11-19 12:30:59 +00:00
|
|
|
platforms = platforms.linux;
|
2020-06-11 11:11:56 +01:00
|
|
|
license = licenses.bsd2;
|
2010-06-11 23:34:51 +01:00
|
|
|
};
|
|
|
|
}
|