nixpkgs/pkgs/applications/radio/minimodem/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

42 lines
1.3 KiB
Nix

{ stdenv, fetchFromGitHub, pkgconfig, autoconf, automake, libtool
, fftw, fftwSinglePrec, alsaLib, libsndfile, libpulseaudio
}:
stdenv.mkDerivation rec {
version = "0.24-1";
pname = "minimodem";
src = fetchFromGitHub {
owner = "kamalmostafa";
repo = "minimodem";
rev = "${pname}-${version}";
sha256 = "1b5xy36fjcp7vkp115dpx4mlmqg2fc7xvxdy648fb8im953bw7ql";
};
nativeBuildInputs = [ pkgconfig autoconf automake libtool ];
buildInputs = [ fftw fftwSinglePrec alsaLib libsndfile libpulseaudio ];
preConfigure = ''
aclocal \
&& autoheader \
&& automake --gnu --add-missing \
&& autoconf
'';
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 ];
};
}