summary refs log tree commit diff
path: root/pkgs/development/libraries/elf-header
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/elf-header
parent320c9c10de8489604c459127079f59a3ef4d8475 (diff)
downloadnixpkgs-b0e9fc131ca777b24b97e21154ff66bb4f312eb6.tar
nixpkgs-b0e9fc131ca777b24b97e21154ff66bb4f312eb6.tar.gz
nixpkgs-b0e9fc131ca777b24b97e21154ff66bb4f312eb6.tar.bz2
nixpkgs-b0e9fc131ca777b24b97e21154ff66bb4f312eb6.tar.lz
nixpkgs-b0e9fc131ca777b24b97e21154ff66bb4f312eb6.tar.xz
nixpkgs-b0e9fc131ca777b24b97e21154ff66bb4f312eb6.tar.zst
nixpkgs-b0e9fc131ca777b24b97e21154ff66bb4f312eb6.zip
treewide: Fix packages using name where they should use pname
Diffstat (limited to 'pkgs/development/libraries/elf-header')
-rw-r--r--pkgs/development/libraries/elf-header/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/elf-header/default.nix b/pkgs/development/libraries/elf-header/default.nix
index ab8c217dce4..47b39eeb7e9 100644
--- a/pkgs/development/libraries/elf-header/default.nix
+++ b/pkgs/development/libraries/elf-header/default.nix
@@ -12,7 +12,7 @@ let
 in
 
 stdenvNoCC.mkDerivation {
-  name = "elf-header";
+  pname = "elf-header";
   inherit (libc) version;
 
   src = null;