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
46 lines
1019 B
Nix
46 lines
1019 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
libax25,
|
|
ncurses,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "ax25-apps";
|
|
version = "0.0.8-rc5-unstable-2021-05-13";
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [
|
|
libax25
|
|
ncurses
|
|
];
|
|
|
|
# src from linux-ax25.in-berlin.de remote has been
|
|
# unreliable, pointing to github mirror from the radiocatalog
|
|
src = fetchFromGitHub {
|
|
owner = "radiocatalog";
|
|
repo = "ax25-apps";
|
|
rev = "afc4a5faa01a24c4da1d152b901066405f36adb6";
|
|
hash = "sha256-RLeFndis2OhIkJPLD+YfEUrJdZL33huVzlHq+kGq7dA=";
|
|
};
|
|
|
|
configureFlags = [
|
|
"--sysconfdir=/etc"
|
|
"--localstatedir=/var/lib"
|
|
"--program-transform-name=s@^call$@ax&@;s@^listen$@ax&@"
|
|
];
|
|
|
|
meta = {
|
|
description = "AX.25 ham radio applications";
|
|
homepage = "https://linux-ax25.in-berlin.de/wiki/Main_Page";
|
|
license = lib.licenses.lgpl21Only;
|
|
maintainers = with lib.maintainers; [ sarcasticadmin ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|