tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
apr: add license
Markus Kowalewski
7 years ago
70087c5c
63a91653
+5
-3
2 changed files
expand all
collapse all
unified
split
pkgs
development
libraries
apr
default.nix
apr-util
default.nix
+4
-3
pkgs/development/libraries/apr-util/default.nix
···
61
61
inherit sslSupport bdbSupport ldapSupport;
62
62
};
63
63
64
64
-
meta = {
64
64
+
meta = with stdenv.lib; {
65
65
homepage = http://apr.apache.org/;
66
66
description = "A companion library to APR, the Apache Portable Runtime";
67
67
-
maintainers = [ stdenv.lib.maintainers.eelco ];
68
68
-
platforms = stdenv.lib.platforms.unix;
67
67
+
maintainers = [ maintainers.eelco ];
68
68
+
platforms = platforms.unix;
69
69
+
license = licenses.asl20;
69
70
};
70
71
}
+1
pkgs/development/libraries/apr/default.nix
···
34
34
homepage = http://apr.apache.org/;
35
35
description = "The Apache Portable Runtime library";
36
36
platforms = platforms.all;
37
37
+
license = licenses.asl20;
37
38
maintainers = [ maintainers.eelco ];
38
39
};
39
40
}