about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/radio/rscw/default.nix
blob: 7fe638df61d0c62078be73cc4aa764de900727fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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";
  };

  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;
  };
}