Add fmit: Free Musical Instrument Tuner
This commit is contained in:
parent
9438fa4d3f
commit
9fc1a35784
28
pkgs/applications/audio/fmit/default.nix
Normal file
28
pkgs/applications/audio/fmit/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ stdenv, fetchurl, alsaLib, cmake, fftw, freeglut, jack2, libXmu, qt4 }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "0.99.5";
|
||||||
|
name = "fmit-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://download.gna.org/fmit/${name}-Source.tar.bz2";
|
||||||
|
sha256 = "1rc84gi27jmq2smhk0y0p2xyypmsz878vi053iqns21k848g1491";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Also update longDescription when adding/removing sound libraries
|
||||||
|
buildInputs = [ alsaLib cmake fftw freeglut jack2 libXmu qt4 ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Free Musical Instrument Tuner";
|
||||||
|
longDescription = ''
|
||||||
|
Software for tuning musical instruments. Uses Qt as GUI library and
|
||||||
|
ALSA or JACK as sound input library.
|
||||||
|
'';
|
||||||
|
homepage = http://home.gna.org/fmit/index.html;
|
||||||
|
license = with licenses; gpl3Plus;
|
||||||
|
platforms = with platforms; linux;
|
||||||
|
maintainers = with maintainers; [ nckx ];
|
||||||
|
};
|
||||||
|
}
|
@ -9755,6 +9755,8 @@ let
|
|||||||
|
|
||||||
fluidsynth = callPackage ../applications/audio/fluidsynth { };
|
fluidsynth = callPackage ../applications/audio/fluidsynth { };
|
||||||
|
|
||||||
|
fmit = callPackage ../applications/audio/fmit { };
|
||||||
|
|
||||||
focuswriter = callPackage ../applications/editors/focuswriter { };
|
focuswriter = callPackage ../applications/editors/focuswriter { };
|
||||||
|
|
||||||
fossil = callPackage ../applications/version-management/fossil { };
|
fossil = callPackage ../applications/version-management/fossil { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user