about summary refs log tree commit diff
path: root/pkgs/tools
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/tools
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/tools')
-rw-r--r--pkgs/tools/misc/hid-listen/default.nix2
-rw-r--r--pkgs/tools/networking/quickserve/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/hid-listen/default.nix b/pkgs/tools/misc/hid-listen/default.nix
index 0ebad4f7117d..6bbe4888d1b8 100644
--- a/pkgs/tools/misc/hid-listen/default.nix
+++ b/pkgs/tools/misc/hid-listen/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchzip }:
 stdenv.mkDerivation rec {
-  name = "hid-listen";
+  pname = "hid-listen";
   version = "1.01";
 
   src = fetchzip {
diff --git a/pkgs/tools/networking/quickserve/default.nix b/pkgs/tools/networking/quickserve/default.nix
index 06e5918dccd8..7269eb7b80a9 100644
--- a/pkgs/tools/networking/quickserve/default.nix
+++ b/pkgs/tools/networking/quickserve/default.nix
@@ -12,7 +12,7 @@ let
   };
   wrappedPython = python3.withPackages (_: [ threaded_servers ]);
 in stdenv.mkDerivation {
-  name = "quickserve";
+  pname = "quickserve";
   version = "2018";
 
   unpackPhase = ":";