Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
70 lines
1.3 KiB
Nix
70 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
curl,
|
|
webkitgtk_4_0,
|
|
libmicrohttpd,
|
|
libsecret,
|
|
qrencode,
|
|
libsodium,
|
|
pkg-config,
|
|
help2man,
|
|
nix-update-script,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "oidc-agent";
|
|
version = "5.2.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "indigo-dc";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-Vj/YoZpbiV8psU70i3SIKJM/qPQYuy96ogEhT8cG7RU=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
help2man
|
|
];
|
|
|
|
buildInputs = [
|
|
curl
|
|
webkitgtk_4_0
|
|
libmicrohttpd
|
|
libsecret
|
|
qrencode
|
|
libsodium
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
makeFlags = [
|
|
"PREFIX=$(out)"
|
|
"BIN_PATH=$(out)"
|
|
"PROMPT_BIN_PATH=$(out)"
|
|
"LIB_PATH=$(out)/lib"
|
|
];
|
|
|
|
installTargets = [
|
|
"install_bin"
|
|
"install_lib"
|
|
"install_conf"
|
|
];
|
|
|
|
postFixup = ''
|
|
# Override with patched binary to be used by help2man
|
|
cp -r $out/bin/* bin
|
|
make install_man PREFIX=$out MAN_PATH=$out/share/man PROMPT_MAN_PATH=$out/share/man
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
description = "Manage OpenID Connect tokens on the command line";
|
|
homepage = "https://github.com/indigo-dc/oidc-agent";
|
|
maintainers = with maintainers; [ xinyangli ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|