summary refs log tree commit diff
path: root/pkgs/data/icons/numix-cursor-theme
diff options
context:
space:
mode:
authorStephane Raux <stephaneyfx@gmail.com>2021-11-22 08:52:59 -0600
committerStephane Raux <stephaneyfx@gmail.com>2021-11-22 08:55:46 -0600
commit10e89127994fbeebf7f1cf07df49e9c53bd7eca1 (patch)
tree03aedf6534727754787734a8658f581610bc0aad /pkgs/data/icons/numix-cursor-theme
parent4e77334d2c176b125193205fa78647158458a0ba (diff)
downloadnixpkgs-10e89127994fbeebf7f1cf07df49e9c53bd7eca1.tar
nixpkgs-10e89127994fbeebf7f1cf07df49e9c53bd7eca1.tar.gz
nixpkgs-10e89127994fbeebf7f1cf07df49e9c53bd7eca1.tar.bz2
nixpkgs-10e89127994fbeebf7f1cf07df49e9c53bd7eca1.tar.lz
nixpkgs-10e89127994fbeebf7f1cf07df49e9c53bd7eca1.tar.xz
nixpkgs-10e89127994fbeebf7f1cf07df49e9c53bd7eca1.tar.zst
nixpkgs-10e89127994fbeebf7f1cf07df49e9c53bd7eca1.zip
numix-cursor-theme: Define pname
Diffstat (limited to 'pkgs/data/icons/numix-cursor-theme')
-rw-r--r--pkgs/data/icons/numix-cursor-theme/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/data/icons/numix-cursor-theme/default.nix b/pkgs/data/icons/numix-cursor-theme/default.nix
index 2cc3b20811c..e7f0905ff40 100644
--- a/pkgs/data/icons/numix-cursor-theme/default.nix
+++ b/pkgs/data/icons/numix-cursor-theme/default.nix
@@ -1,13 +1,12 @@
 { lib, stdenv, fetchFromGitHub, inkscape, xcursorgen }:
 
 stdenv.mkDerivation rec {
+  pname = "numix-cursor-theme";
   version = "1.2";
-  package-name = "numix-cursor-theme";
-  name = "${package-name}-${version}";
 
   src = fetchFromGitHub {
     owner = "numixproject";
-    repo = package-name;
+    repo = pname;
     rev = "v${version}";
     sha256 = "1q3w5i0h3ly6i7s9pqjdrb14kp89i78s0havri7lhiqyxizjvcvh";
   };