From 248c6525564dabe71e130e4f6a48005201d2efdc Mon Sep 17 00:00:00 2001 From: Rovanion Luckey Date: Fri, 28 May 2021 17:19:56 +0200 Subject: [PATCH] gnu: lingot: Add package lingot. * gnu/packages/music.scm (lingot): Add package --- gnu/packages/music.scm | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 7840e8399a..423c9bd3c7 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -6639,3 +6639,40 @@ It is provided as an LV2 plugin and as a standalone Jack application.") framework.") (home-page "http://shiru.untergrund.net/software.shtml") (license license:wtfpl2)))) + +(define-public lingot + (package + (name "lingot") + (version "1.1.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ibancg/lingot") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "04lcjzfhddbyskxr2068z609y6x0s2gjx1wl78w0dkxdi459zrn9")))) + (build-system gnu-build-system) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("intltool" ,intltool) + ("cunit" ,cunit) + ("pkg-config" ,pkg-config) + ("libtool" ,libtool))) + (inputs + `( + ("alsa-lib" ,alsa-lib) ; for libasound2 + ("fftw" ,fftw) + ("gtk+" ,gtk+) + ("glib" ,glib "bin") ; for GLIB_COMPILE_RESOURCES + ("jack" ,jack-2) + ("json-c" ,json-c) + ("pulseaudio" ,pulseaudio))) + (home-page "http://lingot.nongnu.org/") + (synopsis "An accurate, configurable musical instrument tuner") + (description "LINGOT is a musical instrument tuner. It’s accurate, easy to use, and highly configurable. Originally conceived to tune electric guitars, it can now be used to tune other instruments. + +It looks like an analogue tuner, with a gauge indicating the relative shift to a certain note, determined automatically as the closest note to the estimated frequency.") + (license license:gpl2))) -- 2.30.0