diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-02-21 22:07:35 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-02-21 22:07:35 +0100 |
commit | 96810c7da4448b0c3f551c9427fca1fe58a5aaeb (patch) | |
tree | 8498f52be1a2c45f4db981be8f406c9c9ca37daa | |
parent | 2b728849631db9edb2bb213cc5d1376a1e2701b3 (diff) |
Add environment file.
-rw-r--r-- | guix.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/guix.scm b/guix.scm new file mode 100644 index 0000000..77cf112 --- /dev/null +++ b/guix.scm @@ -0,0 +1,31 @@ +;;; Run the following command to enter a development environment. +;;; +;;; $ guix environment -l guix.scm + +(use-modules ((guix licenses) #:prefix license:) + (guix packages) + (guix download) + (guix utils) + (guix build-system gnu) + (gnu packages) + (gnu packages base) + (gnu packages audio) + (gnu packages music) + (gnu packages xiph)) + +(package + (name "env") + (version "0.0.0") + (source #f) + (build-system gnu-build-system) + (inputs + `(("sox" ,sox) + ("make" ,gnu-make) + ("lilypond" ,lilypond) + ("klick" ,klick) + ("fluidsynth" ,fluidsynth) + ("oggenc" ,vorbis-tools))) + (home-page "https://elephly.net") + (synopsis "") + (description "") + (license license:gpl3+)) |