1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

libreswan: add license

This commit is contained in:
Markus Kowalewski 2018-09-10 21:28:59 +02:00
parent 460c0145e7
commit bb27094df1
No known key found for this signature in database
GPG key ID: D865C8A91D7025EB

View file

@ -76,10 +76,11 @@ stdenv.mkDerivation {
enableParallelBuilding = true;
meta = {
meta = with stdenv.lib; {
homepage = https://libreswan.org;
description = "A free software implementation of the VPN protocol based on IPSec and the Internet Key Exchange";
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin ++ stdenv.lib.platforms.freebsd;
maintainers = [ stdenv.lib.maintainers.afranchuk ];
platforms = platforms.linux ++ platforms.darwin ++ platforms.freebsd;
license = licenses.gpl2;
maintainers = [ maintainers.afranchuk ];
};
}