Files
nixpkgs/pkgs/by-name/fr/freediameter/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

53 lines
960 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
bison,
cmake,
flex,
pkg-config,
gnutls,
libgcrypt,
libidn2,
lksctp-tools,
unstableGitUpdater,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "freediameter";
version = "1.5.0-unstable-2025-03-16";
src = fetchFromGitHub {
owner = "freeDiameter";
repo = "freeDiameter";
rev = "8e525acdfd439995f3e8e26d5a802fc4ad95d24c";
hash = "sha256-ai2R8scP++tdPh303RAl0qdIpehzFoyykAuAyl2w3MA=";
};
strictDeps = true;
nativeBuildInputs = [
bison
cmake
flex
pkg-config
];
buildInputs = [
gnutls
libgcrypt
libidn2
lksctp-tools
];
passthru.updateScript = unstableGitUpdater { };
meta = {
description = "Implementation of the Diameter Protocol";
homepage = "https://github.com/freeDiameter/freeDiameter";
license = lib.licenses.bsd3;
platforms = lib.platforms.unix;
teams = with lib.teams; [ ngi ];
maintainers = [ ];
};
})