aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjgart <jgart@dismail.de>2021-09-15 23:16:47 -0400
committerBen Sturmfels <ben@sturm.com.au>2021-09-23 23:00:10 +1000
commit0e61ebe5de7eb5e7ce9af90268d81c6048da7f1b (patch)
treebb33320638c1bad5d51babd968b4e5fd30cded82
parent78d8efed7fc84eefa687a08fa06c6604e4c52042 (diff)
downloadmediagoblin-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.scm4
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