nixpkgs/pkgs/applications/audio/fmit/default.nix

33 lines
911 B
Nix
Raw Normal View History

2015-06-15 19:34:30 +00:00
{ stdenv, fetchFromGitHub, alsaLib, cmake, fftw
, freeglut, libjack2, libXmu, qt4 }:
2015-06-15 19:34:30 +00:00
let version = "1.0.0"; in
stdenv.mkDerivation {
name = "fmit-${version}";
2015-06-15 19:34:30 +00:00
src = fetchFromGitHub {
sha256 = "13y9csv34flz7065kg69h99hd7d9zskq12inmkf34l4qjyk7c185";
rev = "v${version}";
repo = "fmit";
owner = "gillesdegottex";
};
buildInputs = [ alsaLib fftw freeglut libjack2 libXmu qt4 ];
2015-06-15 19:34:30 +00:00
nativeBuildInputs = [ cmake ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
2015-06-15 19:34:30 +00:00
inherit version;
description = "Free Musical Instrument Tuner";
longDescription = ''
2015-06-15 19:34:30 +00:00
FMIT is a graphical utility for tuning your musical instruments, with
error and volume history and advanced features.
'';
2015-06-15 19:34:30 +00:00
homepage = http://gillesdegottex.github.io/fmit/;
license = licenses.gpl3Plus;
platforms = with platforms; linux;
maintainers = with maintainers; [ nckx ];
};
}