Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
52 lines
904 B
Nix
52 lines
904 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
autoreconfHook,
|
|
doxygen,
|
|
fetchFromGitHub,
|
|
gettext,
|
|
gnutls,
|
|
libabigail,
|
|
nettle,
|
|
pkg-config,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "radcli";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "radcli";
|
|
repo = "radcli";
|
|
tag = version;
|
|
hash = "sha256-YnZkFYTiU2VNKxuP+JTnH64XYTB/+imeMKN1mZN9VCQ=";
|
|
};
|
|
|
|
postUnpack = ''
|
|
touch ${src.name}/config.rpath
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
doxygen
|
|
gettext
|
|
gnutls
|
|
libabigail
|
|
nettle
|
|
];
|
|
|
|
meta = {
|
|
description = "Simple RADIUS client library";
|
|
homepage = "https://github.com/radcli/radcli";
|
|
changelog = "https://github.com/radcli/radcli/blob/${version}/NEWS";
|
|
license = lib.licenses.bsd2;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
mainProgram = "radcli";
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|