about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorJason "Don" O'Conal <lovek323@gmail.com>2013-06-15 22:02:58 +1000
committerJason "Don" O'Conal <lovek323@gmail.com>2013-06-16 12:10:19 +1000
commit85f2674e22c294ac194caff765c55888a716be8a (patch)
tree87065ccbf78689c0b7f216bbd66738e6937c7f59 /pkgs/servers
parent2735e9c8d6aa444f4a07c26563cda71774d2ca0a (diff)
downloadnixlib-85f2674e22c294ac194caff765c55888a716be8a.tar
nixlib-85f2674e22c294ac194caff765c55888a716be8a.tar.gz
nixlib-85f2674e22c294ac194caff765c55888a716be8a.tar.bz2
nixlib-85f2674e22c294ac194caff765c55888a716be8a.tar.lz
nixlib-85f2674e22c294ac194caff765c55888a716be8a.tar.xz
nixlib-85f2674e22c294ac194caff765c55888a716be8a.tar.zst
nixlib-85f2674e22c294ac194caff765c55888a716be8a.zip
apacheHttpd: minor modifications to meta attrs
* add myself as a maintainer
* use reference to `stdenv.lib.licenses.asl20` rather than literal
  string
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/http/apache-httpd/2.2.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/servers/http/apache-httpd/2.2.nix b/pkgs/servers/http/apache-httpd/2.2.nix
index 23d18ad7c9c6..23454d048b71 100644
--- a/pkgs/servers/http/apache-httpd/2.2.nix
+++ b/pkgs/servers/http/apache-httpd/2.2.nix
@@ -55,10 +55,9 @@ stdenv.mkDerivation rec {
 
   meta = {
     description = "Apache HTTPD, the world's most popular web server";
-    homepage = http://httpd.apache.org/;
-    license = "ASL2.0";
-
-    platforms = stdenv.lib.platforms.unix;
-    maintainers = [ stdenv.lib.maintainers.simons ];
+    homepage    = http://httpd.apache.org/;
+    license     = stdenv.lib.licenses.asl20;
+    platforms   = stdenv.lib.platforms.unix;
+    maintainers = with stdenv.lib.maintainers; [ simons lovek323 ];
   };
 }