Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

apr: add license

+5 -3
+4 -3
pkgs/development/libraries/apr-util/default.nix
··· 61 inherit sslSupport bdbSupport ldapSupport; 62 }; 63 64 - meta = { 65 homepage = http://apr.apache.org/; 66 description = "A companion library to APR, the Apache Portable Runtime"; 67 - maintainers = [ stdenv.lib.maintainers.eelco ]; 68 - platforms = stdenv.lib.platforms.unix; 69 }; 70 }
··· 61 inherit sslSupport bdbSupport ldapSupport; 62 }; 63 64 + meta = with stdenv.lib; { 65 homepage = http://apr.apache.org/; 66 description = "A companion library to APR, the Apache Portable Runtime"; 67 + maintainers = [ maintainers.eelco ]; 68 + platforms = platforms.unix; 69 + license = licenses.asl20; 70 }; 71 }
+1
pkgs/development/libraries/apr/default.nix
··· 34 homepage = http://apr.apache.org/; 35 description = "The Apache Portable Runtime library"; 36 platforms = platforms.all; 37 maintainers = [ maintainers.eelco ]; 38 }; 39 }
··· 34 homepage = http://apr.apache.org/; 35 description = "The Apache Portable Runtime library"; 36 platforms = platforms.all; 37 + license = licenses.asl20; 38 maintainers = [ maintainers.eelco ]; 39 }; 40 }