aff1f4ab94
The following parameters are now available: * hardeningDisable To disable specific hardening flags * hardeningEnable To enable specific hardening flags Only the cc-wrapper supports this right now, but these may be reused by other wrappers, builders or setup hooks. cc-wrapper supports the following flags: * fortify * stackprotector * pie (disabled by default) * pic * strictoverflow * format * relro * bindnow
25 lines
661 B
Nix
25 lines
661 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, gtk, 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" ];
|
|
|
|
buildInputs = [ pkgconfig intltool gtk alsaLib libglade ];
|
|
|
|
configureFlags = "--disable-jack";
|
|
|
|
meta = {
|
|
description = "Not a Guitar-Only tuner";
|
|
homepage = http://www.nongnu.org/lingot/;
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
};
|
|
}
|