summary refs log tree commit diff
path: root/pkgs/development/libraries/hspell
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2022-02-23 21:00:06 +0100
committerMatthieu Coudron <teto@users.noreply.github.com>2022-02-28 01:04:51 +0100
commitb83b3490495f0a086597416e0766b6d5729e3c54 (patch)
treefaf36563e1aee8f38e0112d1e8c3d69fc0e37177 /pkgs/development/libraries/hspell
parentb178b1c43a83e54857e2b8a0e0a8140b09ca876c (diff)
downloadnixpkgs-b83b3490495f0a086597416e0766b6d5729e3c54.tar
nixpkgs-b83b3490495f0a086597416e0766b6d5729e3c54.tar.gz
nixpkgs-b83b3490495f0a086597416e0766b6d5729e3c54.tar.bz2
nixpkgs-b83b3490495f0a086597416e0766b6d5729e3c54.tar.lz
nixpkgs-b83b3490495f0a086597416e0766b6d5729e3c54.tar.xz
nixpkgs-b83b3490495f0a086597416e0766b6d5729e3c54.tar.zst
nixpkgs-b83b3490495f0a086597416e0766b6d5729e3c54.zip
treewide: rename name to pname&version
Diffstat (limited to 'pkgs/development/libraries/hspell')
-rw-r--r--pkgs/development/libraries/hspell/dicts.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/hspell/dicts.nix b/pkgs/development/libraries/hspell/dicts.nix
index 83942c2c1dd..06f80bf5cf2 100644
--- a/pkgs/development/libraries/hspell/dicts.nix
+++ b/pkgs/development/libraries/hspell/dicts.nix
@@ -2,7 +2,7 @@
 
 let
   dict = variant: a: stdenv.mkDerivation ({
-    inherit (hspell) src patchPhase nativeBuildInputs;
+    inherit (hspell) version src patchPhase nativeBuildInputs;
     buildFlags = [ variant ];
 
     meta = hspell.meta // {
@@ -15,7 +15,7 @@ in
   recurseForDerivations = true;
 
   aspell = dict "aspell" {
-    name = "aspell-dict-he-${hspell.version}";
+    pname = "aspell-dict-he";
 
     installPhase = ''
       mkdir -p $out/lib/aspell
@@ -23,7 +23,7 @@ in
   };
 
   myspell = dict "myspell" {
-    name = "myspell-dict-he-${hspell.version}";
+    pname = "myspell-dict-he";
 
     installPhase = ''
       mkdir -p $out/lib/myspell
@@ -31,7 +31,7 @@ in
   };
 
   hunspell = dict "hunspell" {
-    name = "hunspell-dict-he-${hspell.version}";
+    pname = "hunspell-dict-he";
 
     installPhase = ''
       mkdir -p $out/lib