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
libreswan: add license
Markus Kowalewski
7 years ago
bb27094d
460c0145
+4
-3
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
libreswan
default.nix
+4
-3
pkgs/tools/networking/libreswan/default.nix
···
76
77
enableParallelBuilding = true;
78
79
-
meta = {
80
homepage = https://libreswan.org;
81
description = "A free software implementation of the VPN protocol based on IPSec and the Internet Key Exchange";
82
-
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin ++ stdenv.lib.platforms.freebsd;
83
-
maintainers = [ stdenv.lib.maintainers.afranchuk ];
0
84
};
85
}
···
76
77
enableParallelBuilding = true;
78
79
+
meta = with stdenv.lib; {
80
homepage = https://libreswan.org;
81
description = "A free software implementation of the VPN protocol based on IPSec and the Internet Key Exchange";
82
+
platforms = platforms.linux ++ platforms.darwin ++ platforms.freebsd;
83
+
license = licenses.gpl2;
84
+
maintainers = [ maintainers.afranchuk ];
85
};
86
}