about summary refs log tree commit diff
path: root/pkgs/development/libraries/libxl
diff options
context:
space:
mode:
authorPatrick Hilhorst <git@hilhorst.be>2018-11-05 00:32:52 +0100
committerPatrick Hilhorst <git@hilhorst.be>2018-11-06 00:06:17 +0100
commitb0e9fc131ca777b24b97e21154ff66bb4f312eb6 (patch)
treeb59e54c66ebb650491c98febdc017a6bd72d1bb6 /pkgs/development/libraries/libxl
parent320c9c10de8489604c459127079f59a3ef4d8475 (diff)
downloadnixlib-b0e9fc131ca777b24b97e21154ff66bb4f312eb6.tar
nixlib-b0e9fc131ca777b24b97e21154ff66bb4f312eb6.tar.gz
nixlib-b0e9fc131ca777b24b97e21154ff66bb4f312eb6.tar.bz2
nixlib-b0e9fc131ca777b24b97e21154ff66bb4f312eb6.tar.lz
nixlib-b0e9fc131ca777b24b97e21154ff66bb4f312eb6.tar.xz
nixlib-b0e9fc131ca777b24b97e21154ff66bb4f312eb6.tar.zst
nixlib-b0e9fc131ca777b24b97e21154ff66bb4f312eb6.zip
treewide: Fix packages using name where they should use pname
Diffstat (limited to 'pkgs/development/libraries/libxl')
-rw-r--r--pkgs/development/libraries/libxl/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libxl/default.nix b/pkgs/development/libraries/libxl/default.nix
index 035bfa8d6dc3..471789d3e0f6 100644
--- a/pkgs/development/libraries/libxl/default.nix
+++ b/pkgs/development/libraries/libxl/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl }:
 
 stdenv.mkDerivation rec {
-  name = "libxl";
+  pname = "libxl";
   version = "3.8.1";
 
   src = fetchurl {
-    url = "http://www.libxl.com/download/${name}-lin-${version}.tar.gz";
+    url = "http://www.libxl.com/download/${pname}-lin-${version}.tar.gz";
     sha256 = "1zdbahhyhr70s8hygwp43j9z4zmglyrr782hkcm1078yvkr2f2fm";
   };