summary refs log tree commit diff
path: root/pkgs/development/libraries/gtkspell
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2021-06-20 16:15:21 +0200
committerFelix Buehler <account@buehler.rocks>2021-06-30 09:45:11 +0200
commit3c12e95ad18367c92865bd13aef68c402fa76036 (patch)
tree56b6a222ef8b51958e8282d9c70cee73cc756a8b /pkgs/development/libraries/gtkspell
parentc1416deae1c0c085a3c7bd7e3c916a6c9dcf4f3e (diff)
downloadnixpkgs-3c12e95ad18367c92865bd13aef68c402fa76036.tar
nixpkgs-3c12e95ad18367c92865bd13aef68c402fa76036.tar.gz
nixpkgs-3c12e95ad18367c92865bd13aef68c402fa76036.tar.bz2
nixpkgs-3c12e95ad18367c92865bd13aef68c402fa76036.tar.lz
nixpkgs-3c12e95ad18367c92865bd13aef68c402fa76036.tar.xz
nixpkgs-3c12e95ad18367c92865bd13aef68c402fa76036.tar.zst
nixpkgs-3c12e95ad18367c92865bd13aef68c402fa76036.zip
development: /s/name/pname&version/
Diffstat (limited to 'pkgs/development/libraries/gtkspell')
-rw-r--r--pkgs/development/libraries/gtkspell/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/libraries/gtkspell/default.nix b/pkgs/development/libraries/gtkspell/default.nix
index 78d9956d30a..aca6ccdcccb 100644
--- a/pkgs/development/libraries/gtkspell/default.nix
+++ b/pkgs/development/libraries/gtkspell/default.nix
@@ -1,10 +1,11 @@
 {lib, stdenv, fetchurl, gtk2, aspell, pkg-config, enchant, intltool}:
 
-stdenv.mkDerivation {
-  name = "gtkspell-2.0.16";
+stdenv.mkDerivation rec {
+  pname = "gtkspell";
+  version = "2.0.16";
 
   src = fetchurl {
-    url = "mirror://sourceforge/gtkspell/gtkspell-2.0.16.tar.gz";
+    url = "mirror://sourceforge/gtkspell/${pname}-${version}.tar.gz";
     sha256 = "00hdv28bp72kg1mq2jdz1sdw2b8mb9iclsp7jdqwpck705bdriwg";
   };