summary refs log tree commit diff
path: root/pkgs/tools/networking/maphosts
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-07-20 12:53:50 +0200
committerGitHub <noreply@github.com>2021-07-20 12:53:50 +0200
commit4b518a313274843fc10805d485eabee7e0f1f796 (patch)
tree6f65fdc4dc97652b25b8dd574ab175e7ae3039f1 /pkgs/tools/networking/maphosts
parent5803b41b0cab22c564e279b0e053b2b71ab22158 (diff)
downloadnixpkgs-4b518a313274843fc10805d485eabee7e0f1f796.tar
nixpkgs-4b518a313274843fc10805d485eabee7e0f1f796.tar.gz
nixpkgs-4b518a313274843fc10805d485eabee7e0f1f796.tar.bz2
nixpkgs-4b518a313274843fc10805d485eabee7e0f1f796.tar.lz
nixpkgs-4b518a313274843fc10805d485eabee7e0f1f796.tar.xz
nixpkgs-4b518a313274843fc10805d485eabee7e0f1f796.tar.zst
nixpkgs-4b518a313274843fc10805d485eabee7e0f1f796.zip
maphosts: convert to pname + version
Diffstat (limited to 'pkgs/tools/networking/maphosts')
-rw-r--r--pkgs/tools/networking/maphosts/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/networking/maphosts/default.nix b/pkgs/tools/networking/maphosts/default.nix
index 8e3d0cf9160..2578fea800d 100644
--- a/pkgs/tools/networking/maphosts/default.nix
+++ b/pkgs/tools/networking/maphosts/default.nix
@@ -7,7 +7,8 @@ let
     gemdir = ./.;
   };
 in stdenv.mkDerivation {
-  name = "maphosts-${env.gems.maphosts.version}";
+  pname = "maphosts";
+  version = env.gems.maphosts.version;
 
   phases = ["installPhase"];