mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
26 lines
695 B
Nix
26 lines
695 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, gtk2, alsaLib, libglade }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "lingot-0.9.1";
|
|
|
|
src = fetchurl {
|
|
url = mirror://savannah/lingot/lingot-0.9.1.tar.gz;
|
|
sha256 = "0ygras6ndw2fylwxx86ac11pcr2y2bcfvvgiwrh92z6zncx254gc";
|
|
};
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ intltool gtk2 alsaLib libglade ];
|
|
|
|
configureFlags = [ "--disable-jack" ];
|
|
|
|
meta = {
|
|
description = "Not a Guitar-Only tuner";
|
|
homepage = https://www.nongnu.org/lingot/;
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
};
|
|
}
|