4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
39 lines
1.0 KiB
Nix
39 lines
1.0 KiB
Nix
{ lib, stdenv, fetchsvn, libxml2, gtk2, curl, pkgconfig } :
|
|
|
|
let
|
|
version = "31801";
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "gosmore-r${version}";
|
|
# 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
|
|
src = fetchsvn {
|
|
url = "http://svn.openstreetmap.org/applications/rendering/gosmore";
|
|
sha256 = "0qsckpqx7i7f8gkqhkzdamr65250afk1rpnh3nbman35kdv3dsxi";
|
|
rev = version;
|
|
ignoreExternals = true;
|
|
};
|
|
|
|
buildInputs = [ libxml2 gtk2 curl ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
prePatch = ''
|
|
sed -e '/curl.types.h/d' -i *.{c,h,hpp,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;
|
|
};
|
|
}
|