summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2017-08-28 21:19:40 +0800
committerPeter Hoeg <peter@hoeg.com>2017-08-28 21:19:46 +0800
commitc8bdd873ff638cd7f5b2c037b7cbf4d9614d1831 (patch)
tree689471efe6476e57455aacdd1d630740343fc433
parentcfbdd3e0d67ba186b2b3a70eb4bf6b21fff28c44 (diff)
downloadnixpkgs-c8bdd873ff638cd7f5b2c037b7cbf4d9614d1831.tar
nixpkgs-c8bdd873ff638cd7f5b2c037b7cbf4d9614d1831.tar.gz
nixpkgs-c8bdd873ff638cd7f5b2c037b7cbf4d9614d1831.tar.bz2
nixpkgs-c8bdd873ff638cd7f5b2c037b7cbf4d9614d1831.tar.lz
nixpkgs-c8bdd873ff638cd7f5b2c037b7cbf4d9614d1831.tar.xz
nixpkgs-c8bdd873ff638cd7f5b2c037b7cbf4d9614d1831.tar.zst
nixpkgs-c8bdd873ff638cd7f5b2c037b7cbf4d9614d1831.zip
darkhttpd: minor cleanups
-rw-r--r--pkgs/servers/http/darkhttpd/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/servers/http/darkhttpd/default.nix b/pkgs/servers/http/darkhttpd/default.nix
index 0ca888fd6ed..3efc97f6296 100644
--- a/pkgs/servers/http/darkhttpd/default.nix
+++ b/pkgs/servers/http/darkhttpd/default.nix
@@ -9,9 +9,9 @@ stdenv.mkDerivation rec {
     sha256 = "0185wlyx4iqiwfigp1zvql14zw7gxfacncii3d15yaxk4av1f155";
   };
 
-  installPhase = ''
-    install -d "$out/bin"
+  enableParallelBuilding = true;
 
+  installPhase = ''
     # install darkhttpd
     install -Dm755 "darkhttpd" "$out/bin/darkhttpd"
 
@@ -22,9 +22,9 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "Small and secure static webserver";
-    homepage = https://unix4lyfe.org/darkhttpd/;
-    license = stdenv.lib.licenses.bsd3;
-    platforms = platforms.all;
-    maintainers = [ maintainers.bobvanderlinden ];
+    homepage    = https://unix4lyfe.org/darkhttpd/;
+    license     = licenses.bsd3;
+    maintainers = with maintainers; [ bobvanderlinden ];
+    platforms   = platforms.all;
   };
 }