diff options
author | jgart <jgart@dismail.de> | 2021-09-15 23:16:47 -0400 |
---|---|---|
committer | Ben Sturmfels <ben@sturm.com.au> | 2021-09-23 23:00:10 +1000 |
commit | 0e61ebe5de7eb5e7ce9af90268d81c6048da7f1b (patch) | |
tree | bb33320638c1bad5d51babd968b4e5fd30cded82 | |
parent | 78d8efed7fc84eefa687a08fa06c6604e4c52042 (diff) | |
download | mediagoblin-0e61ebe5de7eb5e7ce9af90268d81c6048da7f1b.tar.lz mediagoblin-0e61ebe5de7eb5e7ce9af90268d81c6048da7f1b.tar.xz mediagoblin-0e61ebe5de7eb5e7ce9af90268d81c6048da7f1b.zip |
Add cc0 license to guix package.
`license:` as a prefix is a common convention for imported license
names in guix upstream code.
licenses in guix are modeled as variables that point to the
instantiation of a particular license record.
See (guix licenses) module for more info.
Signed-off-by: Ben Sturmfels <ben@sturm.com.au>
-rw-r--r-- | guix-env.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix-env.scm b/guix-env.scm index 7973fb12..efa04ef3 100644 --- a/guix-env.scm +++ b/guix-env.scm @@ -123,7 +123,7 @@ (use-modules (ice-9 match) (srfi srfi-1) (guix packages) - (guix licenses) + ((guix licenses) #:prefix license:) (guix download) (guix git-download) (guix build-system gnu) @@ -240,6 +240,6 @@ "MediaGoblin is a free software media publishing platform that anyone can run. You can think of it as a decentralized alternative to Flickr, YouTube, SoundCloud, etc.") - (license agpl3+))) + (license (list license:agpl3+ license:cc0)))) mediagoblin |