about summary refs log tree commit diff
path: root/pkgs/servers
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/servers
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/servers')
-rw-r--r--pkgs/servers/web-apps/fileshelter/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/servers/web-apps/fileshelter/default.nix b/pkgs/servers/web-apps/fileshelter/default.nix
index d0be4f575dd6..01fb8c624820 100644
--- a/pkgs/servers/web-apps/fileshelter/default.nix
+++ b/pkgs/servers/web-apps/fileshelter/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchFromGitHub, autoreconfHook, libzip, boost, wt3, libconfig, pkgconfig } :
 
 stdenv.mkDerivation rec {
-  name = "fileshelter";
+  pname = "fileshelter";
   version = "3.0.0";
 
   src = fetchFromGitHub {