summary refs log tree commit diff
path: root/pkgs/applications/audio/minimodem/default.nix
blob: 2e293ee4552dc1ce0db0ade056335d81b3efcd4e (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
{ stdenv, fetchurl, pkgconfig, fftw, fftwSinglePrec, alsaLib, libsndfile, libpulseaudio }:

stdenv.mkDerivation rec {
  version = "0.19";
  pname = "minimodem";
  name = "${pname}-${version}";

  src = fetchurl {
    url = "http://www.whence.com/${pname}/${name}.tar.gz";
    sha256 = "003xyqjq59wcjafrdv1b8w34xsn4nvzz51wwd7mqddajh0g4dz4g";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ fftw fftwSinglePrec alsaLib libsndfile libpulseaudio ];

  meta = {
    description = "General-purpose software audio FSK modem";
    longDescription = ''
    Minimodem is a command-line program which decodes (or generates) audio
    modem tones at any specified baud rate, using various framing protocols. It
    acts a general-purpose software FSK modem, and includes support for various
    standard FSK protocols such as Bell103, Bell202, RTTY, NOAA SAME, and
    Caller-ID.
    '';
    homepage = http://www.whence.com/minimodem/;
    license = stdenv.lib.licenses.gpl3Plus;
    platforms = with stdenv.lib.platforms; linux;
    maintainers = with stdenv.lib.maintainers; [ relrod ];
  };
}