Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

libreswan: add license

+4 -3
+4 -3
pkgs/tools/networking/libreswan/default.nix
··· 76 76 77 77 enableParallelBuilding = true; 78 78 79 - meta = { 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 - platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin ++ stdenv.lib.platforms.freebsd; 83 - maintainers = [ stdenv.lib.maintainers.afranchuk ]; 82 + platforms = platforms.linux ++ platforms.darwin ++ platforms.freebsd; 83 + license = licenses.gpl2; 84 + maintainers = [ maintainers.afranchuk ]; 84 85 }; 85 86 }