1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 04:02:10 +00:00
nixpkgs/pkgs/applications/gis/gmt/dcw.nix

33 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2020-05-24 01:24:21 +01:00
stdenv.mkDerivation rec {
2020-08-24 08:58:16 +01:00
pname = "dcw-gmt";
2021-12-31 09:36:06 +00:00
version = "2.0.2";
2020-05-24 01:24:21 +01:00
src = fetchurl {
url = "ftp://ftp.soest.hawaii.edu/gmt/dcw-gmt-${version}.tar.gz";
2021-12-31 09:36:06 +00:00
sha256 = "sha256-KzAPAco1DbF6rdAmCuM7823GthvkFQ5mgpAzzsPWXDw=";
2020-05-24 01:24:21 +01:00
};
installPhase = ''
mkdir -p $out/share/dcw-gmt
cp -rv ./* $out/share/dcw-gmt
'';
meta = with lib; {
2020-05-24 01:24:21 +01:00
homepage = "https://www.soest.hawaii.edu/pwessel/dcw/";
description = "Vector basemap of the world, for use with GMT";
longDescription = ''
DCW-GMT is an enhancement to the original 1:1,000,000 scale vector basemap
of the world, available from the Princeton University Digital Map and
Geospatial Information Center. It contains more state boundaries (the
largest 8 countries are now represented) than the original data
source. Information about DCW can be found on Wikipedia
(https://en.wikipedia.org/wiki/Digital_Chart_of_the_World). This data is
for use by GMT, the Generic Mapping Tools.
'';
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ tviti ];
};
}