2021-01-15 14:21:58 +01:00
|
|
|
{ lib, stdenv
|
2020-04-07 08:58:15 +02:00
|
|
|
, fetchurl
|
|
|
|
, pkg-config
|
|
|
|
, intltool
|
|
|
|
, gtk3
|
|
|
|
, wrapGAppsHook
|
2021-06-10 04:57:09 +02:00
|
|
|
, alsa-lib
|
2020-09-01 17:41:19 +02:00
|
|
|
, libjack2
|
2020-04-07 08:58:15 +02:00
|
|
|
, libpulseaudio
|
|
|
|
, fftw
|
2020-09-01 17:41:19 +02:00
|
|
|
, jackSupport ? true
|
2020-04-07 08:58:15 +02:00
|
|
|
}:
|
2011-05-07 19:52:57 +02:00
|
|
|
|
2020-04-07 08:58:15 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "lingot";
|
|
|
|
version = "1.0.1";
|
2011-05-07 19:52:57 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-04-07 08:58:15 +02:00
|
|
|
url = "mirror://savannah/${pname}/${pname}-${version}.tar.gz";
|
2020-06-02 22:44:52 +02:00
|
|
|
sha256 = "03x0qqb9iarjapvii3ja522vkxrqv1hwix6b1r53is48p5xwgf3i";
|
2011-05-07 19:52:57 +02:00
|
|
|
};
|
|
|
|
|
2020-04-07 08:58:15 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
intltool
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
2016-02-12 16:44:45 +01:00
|
|
|
|
2020-04-07 08:58:15 +02:00
|
|
|
buildInputs = [
|
|
|
|
gtk3
|
2021-06-10 04:57:09 +02:00
|
|
|
alsa-lib
|
2020-04-07 08:58:15 +02:00
|
|
|
libpulseaudio
|
|
|
|
fftw
|
2021-01-15 14:21:58 +01:00
|
|
|
] ++ lib.optional jackSupport libjack2;
|
2011-05-07 19:52:57 +02:00
|
|
|
|
2021-01-15 14:21:58 +01:00
|
|
|
configureFlags = lib.optional (!jackSupport) "--disable-jack";
|
2011-05-07 19:52:57 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Not a Guitar-Only tuner";
|
2020-04-07 08:58:15 +02:00
|
|
|
homepage = "https://www.nongnu.org/lingot/";
|
2021-01-15 14:21:58 +01:00
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
platforms = with lib.platforms; linux;
|
|
|
|
maintainers = with lib.maintainers; [ viric ];
|
2011-05-07 19:52:57 +02:00
|
|
|
};
|
|
|
|
}
|