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
76
77
77
enableParallelBuilding = true;
78
78
79
79
-
meta = {
79
79
+
meta = with stdenv.lib; {
80
80
homepage = https://libreswan.org;
81
81
description = "A free software implementation of the VPN protocol based on IPSec and the Internet Key Exchange";
82
82
-
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin ++ stdenv.lib.platforms.freebsd;
83
83
-
maintainers = [ stdenv.lib.maintainers.afranchuk ];
82
82
+
platforms = platforms.linux ++ platforms.darwin ++ platforms.freebsd;
83
83
+
license = licenses.gpl2;
84
84
+
maintainers = [ maintainers.afranchuk ];
84
85
};
85
86
}