summary refs log tree commit diff
path: root/pkgs/development/libraries/libsigcxx/1.2.nix
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2021-11-09 22:14:04 +0100
committerFelix Buehler <account@buehler.rocks>2021-12-01 18:42:45 +0100
commit82d629fc0a4e7b4e9b09a2cacf3bce1949062fb3 (patch)
tree7b7082009d148f3c7066c6691ea4fb2b371b450e /pkgs/development/libraries/libsigcxx/1.2.nix
parent3ccc56863129b2814a03c0c914d373eb4167c15c (diff)
downloadnixpkgs-82d629fc0a4e7b4e9b09a2cacf3bce1949062fb3.tar
nixpkgs-82d629fc0a4e7b4e9b09a2cacf3bce1949062fb3.tar.gz
nixpkgs-82d629fc0a4e7b4e9b09a2cacf3bce1949062fb3.tar.bz2
nixpkgs-82d629fc0a4e7b4e9b09a2cacf3bce1949062fb3.tar.lz
nixpkgs-82d629fc0a4e7b4e9b09a2cacf3bce1949062fb3.tar.xz
nixpkgs-82d629fc0a4e7b4e9b09a2cacf3bce1949062fb3.tar.zst
nixpkgs-82d629fc0a4e7b4e9b09a2cacf3bce1949062fb3.zip
pkgs/development: rename name to pname&version
Diffstat (limited to 'pkgs/development/libraries/libsigcxx/1.2.nix')
-rw-r--r--pkgs/development/libraries/libsigcxx/1.2.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libsigcxx/1.2.nix b/pkgs/development/libraries/libsigcxx/1.2.nix
index a417e0bcc1d..8464ba36af3 100644
--- a/pkgs/development/libraries/libsigcxx/1.2.nix
+++ b/pkgs/development/libraries/libsigcxx/1.2.nix
@@ -1,10 +1,11 @@
 {lib, stdenv, fetchurl, pkg-config, m4}:
 
 stdenv.mkDerivation rec {
-  name = "libsigc++-1.2.7";
+  pname = "libsigc++";
+  version = "1.2.7";
 
   src = fetchurl {
-    url = "mirror://gnome/sources/libsigc++/1.2/${name}.tar.bz2";
+    url = "mirror://gnome/sources/libsigc++/1.2/libsigc++-${version}.tar.bz2";
     sha256 = "099224v5y0y1ggqrfc8vga8afr3nb93iicn7cj8xxgsrwa83s5nr";
   };