summary refs log tree commit diff
path: root/pkgs/applications/audio/fmit
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-01-11 03:19:40 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-01-11 03:19:40 +0100
commit9fc1a35784fa82c96b60a2d0633ecc687a12c711 (patch)
tree1e9ce93cbe994688f7c34f688aeb880133145dd6 /pkgs/applications/audio/fmit
parent9438fa4d3f61617905210de51090400d6e4eed6e (diff)
downloadnixpkgs-9fc1a35784fa82c96b60a2d0633ecc687a12c711.tar
nixpkgs-9fc1a35784fa82c96b60a2d0633ecc687a12c711.tar.gz
nixpkgs-9fc1a35784fa82c96b60a2d0633ecc687a12c711.tar.bz2
nixpkgs-9fc1a35784fa82c96b60a2d0633ecc687a12c711.tar.lz
nixpkgs-9fc1a35784fa82c96b60a2d0633ecc687a12c711.tar.xz
nixpkgs-9fc1a35784fa82c96b60a2d0633ecc687a12c711.tar.zst
nixpkgs-9fc1a35784fa82c96b60a2d0633ecc687a12c711.zip
Add fmit: Free Musical Instrument Tuner
Diffstat (limited to 'pkgs/applications/audio/fmit')
-rw-r--r--pkgs/applications/audio/fmit/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/applications/audio/fmit/default.nix b/pkgs/applications/audio/fmit/default.nix
new file mode 100644
index 00000000000..0c12778089b
--- /dev/null
+++ b/pkgs/applications/audio/fmit/default.nix
@@ -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 ];
+  };
+}