Put in earplugs
This commit is contained in:
parent
399aa65501
commit
31fe2315cf
7 changed files with 100 additions and 31 deletions
|
@ -1,3 +1,4 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2023 nik gaffney <nik@fo.am>
|
||||
;;;
|
||||
;;; This file is not (yet) part of GNU Guix.
|
||||
|
@ -15,7 +16,7 @@
|
|||
;;; You should have received a copy of the GNU General Public License
|
||||
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
;; as seen near gnu/packages/fonts.scm
|
||||
;; as seen near gnu/packages/fonts.scm
|
||||
|
||||
(define-module (zzkt fonts-osp)
|
||||
#:use-module (ice-9 regex)
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2023 nik gaffney <nik@fo.am>
|
||||
;;;
|
||||
;;; This file is not (yet) part of GNU Guix.
|
||||
|
|
|
@ -1,3 +1,20 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2023 nik gaffney <nik@fo.am>
|
||||
;;;
|
||||
;;; This file is not (yet) part of GNU Guix.
|
||||
;;;
|
||||
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
||||
;;; under the terms of the GNU General Public License as published by
|
||||
;;; the Free Software Foundation; either version 3 of the License, or (at
|
||||
;;; your option) any later version.
|
||||
;;;
|
||||
;;; GNU Guix is distributed in the hope that it will be useful, but
|
||||
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
;;; GNU General Public License for more details.
|
||||
;;;
|
||||
;;; You should have received a copy of the GNU General Public License
|
||||
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
(define-module (zzkt frameworkinfo)
|
||||
#:use-module (guix)
|
||||
|
|
45
packages/zzkt/plugdata.scm
Normal file
45
packages/zzkt/plugdata.scm
Normal file
|
@ -0,0 +1,45 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2023 nik gaffney <nik@fo.am>
|
||||
;;;
|
||||
;;; This file is not (yet) part of GNU Guix.
|
||||
;;;
|
||||
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
||||
;;; under the terms of the GNU General Public License as published by
|
||||
;;; the Free Software Foundation; either version 3 of the License, or (at
|
||||
;;; your option) any later version.
|
||||
;;;
|
||||
;;; GNU Guix is distributed in the hope that it will be useful, but
|
||||
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
;;; GNU General Public License for more details.
|
||||
;;;
|
||||
;;; You should have received a copy of the GNU General Public License
|
||||
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
(define-module (zzkt plugdata)
|
||||
#:use-module (guix)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix build-system cmake)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages gawk))
|
||||
|
||||
(define-public plugdata
|
||||
(package
|
||||
(name "plugdata")
|
||||
(version "0.8.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri "https://github.com/plugdata-team/plugdata/archive/refs/tags/v0.8.2.tar.gz")
|
||||
(sha256 (base32 "18c340hnx1sny87dby8wahijl1ssj1av67ff232gfwymfra6rdxm"))))
|
||||
;; see https://github.com/juce-framework/JUCE/blob/master/docs/Linux%20Dependencies.md
|
||||
(inputs
|
||||
(list gawk))
|
||||
(build-system cmake-build-system)
|
||||
(arguments (list #:configure-flags #~(list "--enable-silent-rules")))
|
||||
(home-page "https://plugdata.org/")
|
||||
(synopsis "A visual programming environment for audio experimentation, prototyping and education")
|
||||
(description "A visual programming environment for audio experimentation, prototyping and education")
|
||||
(license license:gpl3+)))
|
|
@ -1,3 +1,20 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2023 nik gaffney <nik@fo.am>
|
||||
;;;
|
||||
;;; This file is not (yet) part of GNU Guix.
|
||||
;;;
|
||||
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
||||
;;; under the terms of the GNU General Public License as published by
|
||||
;;; the Free Software Foundation; either version 3 of the License, or (at
|
||||
;;; your option) any later version.
|
||||
;;;
|
||||
;;; GNU Guix is distributed in the hope that it will be useful, but
|
||||
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
;;; GNU General Public License for more details.
|
||||
;;;
|
||||
;;; You should have received a copy of the GNU General Public License
|
||||
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
(define-module (zzkt sbcl-osc)
|
||||
#:use-module (guix)
|
||||
|
|
|
@ -601,33 +601,3 @@ in parallel on an opt-in basis.")
|
|||
;; strength alternative to OCaml's standard library that was developed by Jane
|
||||
;; Street, the largest industrial user of OCaml.")
|
||||
;; (license license:expat)))
|
||||
|
||||
(define-public ocaml-logs
|
||||
(package
|
||||
(name "ocaml-logs")
|
||||
(version "0.7.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri "https://erratique.ch/software/logs/releases/logs-0.7.0.tbz")
|
||||
(sha256
|
||||
(base32 "1jnmd675wmsmdwyb5mx5b0ac66g4c6gpv5s4mrx2j6pb0wla1x46"))))
|
||||
(build-system ocaml-build-system)
|
||||
(native-inputs (list ocaml-findlib ocamlbuild ocaml-topkg ocaml-mtime))
|
||||
(home-page "https://erratique.ch/software/logs")
|
||||
(synopsis "Logging infrastructure for OCaml")
|
||||
(description
|
||||
"Logs provides a logging infrastructure for OCaml. Logging is performed on
|
||||
sources whose reporting level can be set independently. Log message report is
|
||||
decoupled from logging and is handled by a reporter. A few optional log
|
||||
reporters are distributed with the base library and the API easily allows to
|
||||
implement your own. `Logs` has no dependencies. The optional `Logs_fmt`
|
||||
reporter on OCaml formatters depends on [Fmt][fmt]. The optional `Logs_browser`
|
||||
reporter that reports to the web browser console depends on [js_of_ocaml][jsoo].
|
||||
The optional `Logs_cli` library that provides command line support for
|
||||
controlling Logs depends on [`Cmdliner`][cmdliner]. The optional `Logs_lwt`
|
||||
library that provides Lwt logging functions depends on [`Lwt`][lwt] Logs and its
|
||||
reporters are distributed under the ISC license. [fmt]:
|
||||
http://erratique.ch/software/fmt [jsoo]: http://ocsigen.org/js_of_ocaml/
|
||||
[cmdliner]: http://erratique.ch/software/cmdliner [lwt]: http://ocsigen.org/lwt/")
|
||||
(license license:isc)))
|
||||
|
|
|
@ -1,3 +1,21 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2023 nik gaffney <nik@fo.am>
|
||||
;;;
|
||||
;;; This file is not (yet) part of GNU Guix.
|
||||
;;;
|
||||
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
||||
;;; under the terms of the GNU General Public License as published by
|
||||
;;; the Free Software Foundation; either version 3 of the License, or (at
|
||||
;;; your option) any later version.
|
||||
;;;
|
||||
;;; GNU Guix is distributed in the hope that it will be useful, but
|
||||
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
;;; GNU General Public License for more details.
|
||||
;;;
|
||||
;;; You should have received a copy of the GNU General Public License
|
||||
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
;; tidal(cycles)
|
||||
;;
|
||||
;; run time depends
|
||||
|
|
Loading…
Reference in a new issue