>From 5dba9ed0dd61602b4b24c3f79067be658bc5a12d Mon Sep 17 00:00:00 2001 From: jgart Date: Wed, 15 Sep 2021 23:04:01 -0400 Subject: [PATCH] Adds cc0 license with #:prefix clause `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. --- guix-env.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guix-env.scm b/guix-env.scm index 4f9cd2ab..d017f4e7 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) @@ -239,6 +239,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 -- 2.33.0