commit
5e47f3ca19
pkgs
37
pkgs/applications/radio/rscw/default.nix
Normal file
37
pkgs/applications/radio/rscw/default.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ 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";
|
||||||
|
};
|
||||||
|
|
||||||
|
setSourceRoot = "sourceRoot=`pwd`";
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
@ -10544,6 +10544,8 @@ with pkgs;
|
|||||||
|
|
||||||
rrdtool = callPackage ../tools/misc/rrdtool { };
|
rrdtool = callPackage ../tools/misc/rrdtool { };
|
||||||
|
|
||||||
|
rscw = callPackage ../applications/radio/rscw { };
|
||||||
|
|
||||||
rset = callPackage ../tools/admin/rset { };
|
rset = callPackage ../tools/admin/rset { };
|
||||||
|
|
||||||
rshijack = callPackage ../tools/networking/rshijack { };
|
rshijack = callPackage ../tools/networking/rshijack { };
|
||||||
|
Loading…
Reference in New Issue
Block a user