fmit -> 1.0.0
This commit is contained in:
parent
046ba6b7db
commit
e8dea0c5c2
@ -1,26 +1,30 @@
|
|||||||
{ stdenv, fetchurl, alsaLib, cmake, fftw, freeglut, jack2, libXmu, qt4 }:
|
{ stdenv, fetchFromGitHub, alsaLib, cmake, fftw
|
||||||
|
, freeglut, jack2, libXmu, qt4 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
let version = "1.0.0"; in
|
||||||
version = "0.99.5";
|
stdenv.mkDerivation {
|
||||||
name = "fmit-${version}";
|
name = "fmit-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "http://download.gna.org/fmit/${name}-Source.tar.bz2";
|
sha256 = "13y9csv34flz7065kg69h99hd7d9zskq12inmkf34l4qjyk7c185";
|
||||||
sha256 = "1rc84gi27jmq2smhk0y0p2xyypmsz878vi053iqns21k848g1491";
|
rev = "v${version}";
|
||||||
|
repo = "fmit";
|
||||||
|
owner = "gillesdegottex";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Also update longDescription when adding/removing sound libraries
|
buildInputs = [ alsaLib fftw freeglut jack2 libXmu qt4 ];
|
||||||
buildInputs = [ alsaLib cmake fftw freeglut jack2 libXmu qt4 ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
inherit version;
|
||||||
description = "Free Musical Instrument Tuner";
|
description = "Free Musical Instrument Tuner";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Software for tuning musical instruments. Uses Qt as GUI library and
|
FMIT is a graphical utility for tuning your musical instruments, with
|
||||||
ALSA or JACK as sound input library.
|
error and volume history and advanced features.
|
||||||
'';
|
'';
|
||||||
homepage = http://home.gna.org/fmit/index.html;
|
homepage = http://gillesdegottex.github.io/fmit/;
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
platforms = with platforms; linux;
|
platforms = with platforms; linux;
|
||||||
maintainers = with maintainers; [ nckx ];
|
maintainers = with maintainers; [ nckx ];
|
||||||
|
Loading…
Reference in New Issue
Block a user