Put in earplugs

This commit is contained in:
nik gaffney 2024-01-16 12:44:02 +01:00
parent 399aa65501
commit 31fe2315cf
Signed by: nik
GPG key ID: 989F5E6EDB478160
7 changed files with 100 additions and 31 deletions

View file

@ -1,3 +1,4 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2023 nik gaffney <nik@fo.am> ;;; Copyright © 2023 nik gaffney <nik@fo.am>
;;; ;;;
;;; This file is not (yet) part of GNU Guix. ;;; This file is not (yet) part of GNU Guix.

View file

@ -1,3 +1,4 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2023 nik gaffney <nik@fo.am> ;;; Copyright © 2023 nik gaffney <nik@fo.am>
;;; ;;;
;;; This file is not (yet) part of GNU Guix. ;;; This file is not (yet) part of GNU Guix.

View file

@ -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) (define-module (zzkt frameworkinfo)
#:use-module (guix) #:use-module (guix)

View 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+)))

View file

@ -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) (define-module (zzkt sbcl-osc)
#:use-module (guix) #:use-module (guix)

View file

@ -601,33 +601,3 @@ in parallel on an opt-in basis.")
;; strength alternative to OCaml's standard library that was developed by Jane ;; strength alternative to OCaml's standard library that was developed by Jane
;; Street, the largest industrial user of OCaml.") ;; Street, the largest industrial user of OCaml.")
;; (license license:expat))) ;; (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)))

View file

@ -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) ;; tidal(cycles)
;; ;;
;; run time depends ;; run time depends