summary refs log tree commit diff
path: root/pkgs/applications/audio/lingot/default.nix
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-05-07 17:52:57 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-05-07 17:52:57 +0000
commit34579eb0dd0347f899d43ebb0e7e6d8babd88d6d (patch)
tree4d9827164c207390fc8ab840e5974a4883b67746 /pkgs/applications/audio/lingot/default.nix
parent2c3bd9a12c8e5760be241cb5de5856592a754b23 (diff)
downloadnixpkgs-34579eb0dd0347f899d43ebb0e7e6d8babd88d6d.tar
nixpkgs-34579eb0dd0347f899d43ebb0e7e6d8babd88d6d.tar.gz
nixpkgs-34579eb0dd0347f899d43ebb0e7e6d8babd88d6d.tar.bz2
nixpkgs-34579eb0dd0347f899d43ebb0e7e6d8babd88d6d.tar.lz
nixpkgs-34579eb0dd0347f899d43ebb0e7e6d8babd88d6d.tar.xz
nixpkgs-34579eb0dd0347f899d43ebb0e7e6d8babd88d6d.tar.zst
nixpkgs-34579eb0dd0347f899d43ebb0e7e6d8babd88d6d.zip
Adding lingot, a guitar tuner.
svn path=/nixpkgs/trunk/; revision=27176
Diffstat (limited to 'pkgs/applications/audio/lingot/default.nix')
-rw-r--r--pkgs/applications/audio/lingot/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/audio/lingot/default.nix b/pkgs/applications/audio/lingot/default.nix
new file mode 100644
index 00000000000..e93f6ffc584
--- /dev/null
+++ b/pkgs/applications/audio/lingot/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchurl, pkgconfig, intltool, gtk, alsaLib, libglade }:
+
+stdenv.mkDerivation {
+  name = "lingot-0.9.0";
+
+  src = fetchurl {
+    url = http://download.savannah.gnu.org/releases/lingot/lingot-0.9.0.tar.gz;
+    sha256 = "07z129lp8m4sz608q409wb11c639w7cbn497r7bscgg08p6c07xb";
+  };
+
+  buildInputs = [ pkgconfig intltool gtk alsaLib libglade ];
+
+  configureFlags = "--disable-jack";
+
+  meta = {
+    description = "Not a Guitar-Only tuner";
+    homepage = http://www.nongnu.org/lingot/;
+    license = "GPLv2+";
+    platforms = with stdenv.lib.platforms; linux;
+    maintainers = with stdenv.lib.maintainers; [viric];
+  };
+}