summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2017-02-21 22:07:35 +0100
committerRicardo Wurmus <rekado@elephly.net>2017-02-21 22:07:35 +0100
commit96810c7da4448b0c3f551c9427fca1fe58a5aaeb (patch)
tree8498f52be1a2c45f4db981be8f406c9c9ca37daa
parent2b728849631db9edb2bb213cc5d1376a1e2701b3 (diff)
Add environment file.
-rw-r--r--guix.scm31
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+))