From 0e61ebe5de7eb5e7ce9af90268d81c6048da7f1b Mon Sep 17 00:00:00 2001 From: jgart Date: Wed, 15 Sep 2021 23:16:47 -0400 Subject: [PATCH] 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 --- guix-env.scm | 4 ++-- 1 file 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