>From f7fad501b59a32849b81e9d824deff01ecc2b025 Mon Sep 17 00:00:00 2001 From: nixo Date: Sun, 31 Jan 2021 11:27:54 +0100 Subject: [PATCH 4/6] gnu: Add drumgizmo-dsrkit. * gnu/packages/audio.scm (drumgizmo-dsrkit): New variable. --- gnu/packages/audio.scm | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index e6f7e6a79b..43b57ba811 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -5000,6 +5000,46 @@ It's a metal or rock kit, consisting of the following drums and cymbals: @end enumerate") (license license:cc-by4.0))) +(define-public drumgizmo-dsrkit + (package + (name "drumgizmo-dsrkit") + (version "2.1") + (source + (origin + (method url-fetch) + (uri + (string-append + "https://drumgizmo.org/kits/DRSKit/DRSKit" + (string-replace-substring version "." "_") ".zip")) + (sha256 + (base32 "147hcxk8dqq53rlglj4p35qwv4gm4pqiicnas1kk2n9nv352v7sj")))) + (build-system copy-build-system) + (arguments + `(#:install-plan + '(("." "share/drumkits/DSRKit/")))) + (native-inputs + `(("unzip" ,unzip))) + (home-page "https://drumgizmo.org/wiki/doku.php?id=kits:drskit") + (synopsis "Jazz and Rock drumkit for drumgizmo") + (description "DRSKit came to be as a collaboration between the DrumGizmo +team and Jes Eiler of DRSDrums. + +The kit should be usable for everything from jazz to rock, and contains the +following components (Left / right placements as seen by the drummer): + +@enumerate +@item 1 kickdrum +@item 1 hanging tom +@item 2 floor toms +@item 1 snare +@item 1 hihat: Paiste Formula 602 Medium hi-hat +@item 2 crash cymbals +Left: Paiste Giant Beat +Right: Paiste Formula 602 (Lend to us by Erik) +@item 1 ride cymbal: Paiste Formula 602 thin crash +@end enumerate") + (license license:cc-by4.0))) + (define-public lsp-dsp-lib (package (name "lsp-dsp-lib") -- 2.30.0