summary refs log tree commit diff
path: root/pkgs/servers/http/micro-httpd/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/http/micro-httpd/default.nix')
-rw-r--r--pkgs/servers/http/micro-httpd/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/http/micro-httpd/default.nix b/pkgs/servers/http/micro-httpd/default.nix
index d99af7a81ae..99960d6cb71 100644
--- a/pkgs/servers/http/micro-httpd/default.nix
+++ b/pkgs/servers/http/micro-httpd/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl }:
+{ lib, stdenv, fetchurl }:
 
 stdenv.mkDerivation {
   name = "micro-httpd-20140814";
@@ -14,7 +14,7 @@ stdenv.mkDerivation {
     mkdir -p $out/share/man/man8
   '';
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     homepage    = "http://acme.com/software/micro_httpd/";
     description = "A really small HTTP server";
     license     = licenses.bsd2;