From ae303853d447018a98d0ec7663ccde969d87302d Mon Sep 17 00:00:00 2001 From: Rovanion Luckey Date: Fri, 28 May 2021 17:19:56 +0200 Subject: gnu: Add lingot. * gnu/packages/music.scm (lingot): New public variable. Signed-off-by: Tobias Geerinckx-Rice --- gnu/packages/music.scm | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) (limited to 'gnu/packages/music.scm') diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index fb15a6ea84..ed64d70a0b 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -38,6 +38,7 @@ ;;; Copyright © 2021 Brendan Tildesley ;;; Copyright © 2021 Bonface Munyoki Kilyungi ;;; Copyright © 2021 Frank Pursel +;;; Copyright © 2021 Rovanion Luckey ;;; ;;; This file is part of GNU Guix. ;;; @@ -1340,6 +1341,47 @@ Sega Master System/Mark III, Sega Genesis/Mega Drive, BBC Micro ;; demo and player directories are under the Expat license license:expat)))) +(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) + ("cunit" ,cunit) + ("glib" ,glib "bin") ; for glib-compile-resources + ("intltool" ,intltool) + ("libtool" ,libtool) + ("pkg-config" ,pkg-config))) + (inputs + `(("alsa-lib" ,alsa-lib) + ("fftw" ,fftw) + ("gtk+" ,gtk+) + ("jack" ,jack-2) + ("json-c" ,json-c) + ("pulseaudio" ,pulseaudio))) + (home-page "http://lingot.nongnu.org/") + (synopsis "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+))) + (define-public ninjas2 (package (name "ninjas2") -- cgit v1.2.3