summary refs log tree commit diff
path: root/pkgs/applications/audio/lingot/default.nix
blob: e93f6ffc584d643b7e93d47131bc3ae3b3324442 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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];
  };
}