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
42 lines
869 B
Nix
42 lines
869 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
fftw,
|
|
gtk2,
|
|
pkg-config,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rscw";
|
|
version = "0.1e";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.pa3fwm.nl/software/${pname}/${pname}-${version}.tgz";
|
|
sha256 = "1hxwxmqc5jinr14ya1idigqigc8qhy1vimzcwy2vmwdjay2sqik2";
|
|
};
|
|
|
|
sourceRoot = ".";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
gtk2
|
|
fftw
|
|
];
|
|
|
|
installPhase = ''
|
|
install -D -m 0755 noisycw $out/bin/noisycw
|
|
install -D -m 0755 rs12tlmdec $out/bin/rs12tlmdec
|
|
install -D -m 0755 rscw $out/bin/rscw
|
|
install -D -m 0755 rscwx $out/bin/rscwx
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Receive CW through the soundcard";
|
|
homepage = "https://www.pa3fwm.nl/software/rscw/";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ earldouglas ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|