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
41 lines
945 B
Nix
41 lines
945 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
libax25,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "ax25-tools";
|
|
version = "0.0.10-rc5";
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ libax25 ];
|
|
|
|
# src from linux-ax25.in-berlin.de remote has been
|
|
# unreliable, pointing to github mirror from the radiocatalog
|
|
src = fetchFromGitHub {
|
|
owner = "radiocatalog";
|
|
repo = "ax25-tools";
|
|
tag = "ax25-tools-${finalAttrs.version}";
|
|
hash = "sha256-yoFflC3KU3cKQEENj4MF793TvUdf38C2Q9B7nMuLgMg=";
|
|
};
|
|
|
|
configureFlags = [
|
|
"--sysconfdir=/etc"
|
|
"--localstatedir=/var/lib"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Non-GUI tools used to configure an AX.25 enabled computer";
|
|
homepage = "https://linux-ax25.in-berlin.de/wiki/Main_Page";
|
|
license = licenses.lgpl21Only;
|
|
maintainers = with maintainers; [ sarcasticadmin ];
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|