2021-01-11 07:54:33 +00:00
|
|
|
{ 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 \
|
2016-02-01 18:46:16 +00:00
|
|
|
--subst-var-by openssl ${openssl.bin}/bin/openssl
|
2016-01-05 18:55:33 +00:00
|
|
|
|
|
|
|
# Helper utility
|
|
|
|
cat > $out/bin/easyrsa-init <<EOF
|
2019-02-26 11:45:54 +00:00
|
|
|
#!${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
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2013-07-10 20:00:56 +01:00
|
|
|
description = "Simple shell based CA utility";
|
2020-04-01 02:11:51 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|