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
cln: add license
Markus Kowalewski
7 years ago
e978d7a9
e86c84d6
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
cln
default.nix
+3
-3
pkgs/development/libraries/cln/default.nix
···
11
11
12
12
buildInputs = [ gmp ];
13
13
14
14
-
meta = {
14
14
+
meta = with stdenv.lib; {
15
15
description = "C/C++ library for numbers, a part of GiNaC";
16
16
homepage = http://www.ginac.de/CLN/;
17
17
-
maintainers = [ ];
18
18
-
platforms = stdenv.lib.platforms.unix; # Once had cygwin problems
17
17
+
license = licenses.gpl2;
18
18
+
platforms = platforms.unix; # Once had cygwin problems
19
19
};
20
20
}