nixpkgs/pkgs/tools/networking/easyrsa/default.nix

43 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, openssl, runtimeShell }:
2016-01-05 18:55:33 +00:00
let
2020-08-23 02:19:39 +01:00
version = "3.0.8";
2019-08-13 22:52:01 +01:00
in stdenv.mkDerivation {
2019-08-13 22:52:01 +01:00
pname = "easyrsa";
inherit version;
2016-01-05 18:55:33 +00:00
src = fetchFromGitHub {
owner = "OpenVPN";
repo = "easy-rsa";
rev = "v${version}";
2020-08-23 02:19:39 +01:00
sha256 = "05q60s343ydh9j6hzj0840qdcq8fkyz06q68yw4pqgqg4w68rbgs";
2013-07-10 20:00:56 +01:00
};
2016-01-05 18:55:33 +00:00
patches = [ ./fix-paths.patch ];
installPhase = ''
mkdir -p $out/share/easyrsa
2020-08-23 02:19:39 +01:00
cp -r easyrsa3/{*.cnf,x509-types,vars.example} $out/share/easyrsa
cp easyrsa3/openssl-easyrsa.cnf $out/share/easyrsa/safessl-easyrsa.cnf
2016-01-05 18:55:33 +00:00
install -D -m755 easyrsa3/easyrsa $out/bin/easyrsa
substituteInPlace $out/bin/easyrsa \
--subst-var out \
--subst-var-by openssl ${openssl.bin}/bin/openssl
2016-01-05 18:55:33 +00:00
# Helper utility
cat > $out/bin/easyrsa-init <<EOF
#!${runtimeShell} -e
2016-01-05 18:55:33 +00:00
cp -r $out/share/easyrsa/* .
EOF
chmod +x $out/bin/easyrsa-init
2013-07-10 20:00:56 +01:00
'';
meta = with lib; {
2013-07-10 20:00:56 +01:00
description = "Simple shell based CA utility";
homepage = "https://openvpn.net/";
2013-07-10 20:00:56 +01:00
license = licenses.gpl2;
2020-08-23 02:19:39 +01:00
maintainers = [ maintainers.offline maintainers.numinit ];
2018-10-14 04:10:21 +01:00
platforms = platforms.unix;
2013-07-10 20:00:56 +01:00
};
}