forked from mirrors/nixpkgs
Merge pull request #2622 from CodeBlock/minimodem
Add minimodem package
This commit is contained in:
commit
738622282b
29
pkgs/applications/audio/minimodem/default.nix
Normal file
29
pkgs/applications/audio/minimodem/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ stdenv, fetchurl, pkgconfig, fftw, fftwSinglePrec, alsaLib, libsndfile, pulseaudio }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.19";
|
||||
pname = "minimodem";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.whence.com/${pname}/${name}.tar.gz";
|
||||
sha256 = "003xyqjq59wcjafrdv1b8w34xsn4nvzz51wwd7mqddajh0g4dz4g";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig fftw fftwSinglePrec alsaLib libsndfile pulseaudio ];
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -8782,6 +8782,8 @@ let
|
|||
|
||||
minicom = callPackage ../tools/misc/minicom { };
|
||||
|
||||
minimodem = callPackage ../applications/audio/minimodem { };
|
||||
|
||||
minidjvu = callPackage ../applications/graphics/minidjvu { };
|
||||
|
||||
mirage = callPackage ../applications/graphics/mirage {};
|
||||
|
|
Loading…
Reference in a new issue