summary refs log tree commit diff
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2016-06-16 15:51:22 +0200
committerJoachim Fasting <joachifm@fastmail.fm>2016-06-16 15:54:29 +0200
commitc05271adf960f1067dba6f24738adaf2074885fa (patch)
treecdaa507a5624dc9cee409a117fca5b6863409d55
parent160aeab22d55013e2bc70bae504855261c7cf889 (diff)
downloadnixpkgs-c05271adf960f1067dba6f24738adaf2074885fa.tar
nixpkgs-c05271adf960f1067dba6f24738adaf2074885fa.tar.gz
nixpkgs-c05271adf960f1067dba6f24738adaf2074885fa.tar.bz2
nixpkgs-c05271adf960f1067dba6f24738adaf2074885fa.tar.lz
nixpkgs-c05271adf960f1067dba6f24738adaf2074885fa.tar.xz
nixpkgs-c05271adf960f1067dba6f24738adaf2074885fa.tar.zst
nixpkgs-c05271adf960f1067dba6f24738adaf2074885fa.zip
nix-serve: fix meta eval
Introduced in d20a8ddea8ba2e5062734716611de142402e1bd1
-rw-r--r--pkgs/tools/package-management/nix-serve/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/package-management/nix-serve/default.nix b/pkgs/tools/package-management/nix-serve/default.nix
index 9ad3fb12436..1e3579b197e 100644
--- a/pkgs/tools/package-management/nix-serve/default.nix
+++ b/pkgs/tools/package-management/nix-serve/default.nix
@@ -38,8 +38,8 @@ stdenv.mkDerivation rec {
   meta = {
     homepage = https://github.com/edolstra/nix-serve;
     description = "A utility for sharing a Nix store as a binary cache";
-    maintainers = [ lib.maintainers.eelco ];
-    license = lib.licenses.gpl3;
+    maintainers = [ maintainers.eelco ];
+    license = licenses.gpl3;
     platforms = nix.meta.platforms;
   };
 }