>From 04f6d7c02385553719174298ec6180fa600295f6 Mon Sep 17 00:00:00 2001 From: nixo Date: Sun, 31 Jan 2021 11:23:37 +0100 Subject: [PATCH 3/6] gnu: Add drumgizmo-crocellkit. * gnu/packages/audio.scm (drumgizmo-crocellkit): New variable. --- gnu/packages/audio.scm | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 812297a369..e6f7e6a79b 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -4962,6 +4962,44 @@ and mix them with a multichannel approach. It is comparable to that of mixing a real drumkit that has been recorded with a multimic setup.") (license license:lgpl3+))) +(define-public drumgizmo-crocellkit + (package + (name "drumgizmo-crocellkit") + (version "1.1") + (source + (origin + (method url-fetch) + (uri + (string-append + "https://drumgizmo.org/kits/CrocellKit/CrocellKit" + (string-replace-substring version "." "_") ".zip")) + (sha256 + (base32 "1inmc60sxnkkxjlrnlaggiyvn1gqs963xkxvcpadjzw6wliiy79l")))) + (build-system copy-build-system) + (arguments + `(#:install-plan + '(("." "share/drumkits/CrocellKit/")))) + (native-inputs + `(("unzip" ,unzip))) + (home-page "https://drumgizmo.org/wiki/doku.php?id=kits:crocellkit") + (synopsis "Rock and Metal drumkit for drumgizmo") + (description "The CrocellKit is the kit used by Danish metal band Crocell. + +It's a metal or rock kit, consisting of the following drums and cymbals: + +@enumerate +@item 1 kickdrum (with double pedal) +@item 2 hanging toms +@item 2 floor toms +@item 1 snare +@item 1 hihat +@item 3 crash cymbals +@item 1 ride cymbals +@item 2 china cymbal +@item 2 splash cymbals +@end enumerate") + (license license:cc-by4.0))) + (define-public lsp-dsp-lib (package (name "lsp-dsp-lib") -- 2.30.0