summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2020-08-24 09:58:16 +0200
committerlassulus <lassulus@lassul.us>2020-08-24 09:58:16 +0200
commitcedef0c6c7604a387e2eae1e04dd89b7ff320ef1 (patch)
tree60e47e78c6638cdacda4193a95ad0a52bad098a6 /pkgs/applications
parent76b71929721a01d9f29aa97d5ac1a7f8f68ee1a2 (diff)
downloadnixpkgs-cedef0c6c7604a387e2eae1e04dd89b7ff320ef1.tar
nixpkgs-cedef0c6c7604a387e2eae1e04dd89b7ff320ef1.tar.gz
nixpkgs-cedef0c6c7604a387e2eae1e04dd89b7ff320ef1.tar.bz2
nixpkgs-cedef0c6c7604a387e2eae1e04dd89b7ff320ef1.tar.lz
nixpkgs-cedef0c6c7604a387e2eae1e04dd89b7ff320ef1.tar.xz
nixpkgs-cedef0c6c7604a387e2eae1e04dd89b7ff320ef1.tar.zst
nixpkgs-cedef0c6c7604a387e2eae1e04dd89b7ff320ef1.zip
gmt: use pname instead of name
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/gis/gmt/dcw.nix2
-rw-r--r--pkgs/applications/gis/gmt/gshhg.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/gis/gmt/dcw.nix b/pkgs/applications/gis/gmt/dcw.nix
index 82889ae8a07..58390e89290 100644
--- a/pkgs/applications/gis/gmt/dcw.nix
+++ b/pkgs/applications/gis/gmt/dcw.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl }:
 
 stdenv.mkDerivation rec {
-  name = "dcw-gmt";
+  pname = "dcw-gmt";
   version = "1.1.4";
   src = fetchurl {
     url = "ftp://ftp.soest.hawaii.edu/gmt/dcw-gmt-${version}.tar.gz";
diff --git a/pkgs/applications/gis/gmt/gshhg.nix b/pkgs/applications/gis/gmt/gshhg.nix
index 89ace020033..0f22f87c89b 100644
--- a/pkgs/applications/gis/gmt/gshhg.nix
+++ b/pkgs/applications/gis/gmt/gshhg.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl }:
 
 stdenv.mkDerivation rec {
-  name = "gshhg-gmt";
+  pname = "gshhg-gmt";
   version = "2.3.7";
   src = fetchurl {
     url = "ftp://ftp.soest.hawaii.edu/gmt/gshhg-gmt-${version}.tar.gz";