forked from mirrors/nixpkgs
Add gosmore, an application for viewing OpenStreetMap files
svn path=/nixpkgs/trunk/; revision=22226
This commit is contained in:
parent
2727c9dac4
commit
fb5e7e8096
30
pkgs/applications/misc/gosmore/default.nix
Normal file
30
pkgs/applications/misc/gosmore/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
a@{fetchsvn, libxml2, gtk, curl, pkgconfig, lib, ...} :
|
||||
let
|
||||
fetchsvn = a.fetchsvn;
|
||||
|
||||
buildInputs = with a; [
|
||||
libxml2 gtk curl pkgconfig
|
||||
];
|
||||
in
|
||||
rec {
|
||||
src = fetchsvn {
|
||||
url = http://svn.openstreetmap.org/applications/rendering/gosmore;
|
||||
sha256 = "0r6c6gk0pjljwcqxjy18d2s526pyv2kwydf5gl9k68s1b20ps3nd";
|
||||
rev = "21657";
|
||||
} + "/";
|
||||
|
||||
inherit buildInputs;
|
||||
configureFlags = [];
|
||||
|
||||
/* doConfigure should be removed if not needed */
|
||||
phaseNames = ["doConfigure" "doMakeInstall"];
|
||||
|
||||
name = "gosmore-r21657";
|
||||
meta = {
|
||||
description = "Open Street Map viewer";
|
||||
maintainers = [
|
||||
a.lib.maintainers.raskin
|
||||
];
|
||||
platforms = a.lib.platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue