summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2018-09-18 08:29:28 -0300
committerxeji <36407913+xeji@users.noreply.github.com>2018-09-18 13:29:28 +0200
commit1944defa4c481344178ec2a20c53502e7e938f81 (patch)
treeeabe3e86e4e0a66e094aeefe94b7905bacc5c2ea /pkgs/misc
parentffaaac7f94c523b22dee5a6348618dc4c3eec23c (diff)
downloadnixlib-1944defa4c481344178ec2a20c53502e7e938f81.tar
nixlib-1944defa4c481344178ec2a20c53502e7e938f81.tar.gz
nixlib-1944defa4c481344178ec2a20c53502e7e938f81.tar.bz2
nixlib-1944defa4c481344178ec2a20c53502e7e938f81.tar.lz
nixlib-1944defa4c481344178ec2a20c53502e7e938f81.tar.xz
nixlib-1944defa4c481344178ec2a20c53502e7e938f81.tar.zst
nixlib-1944defa4c481344178ec2a20c53502e7e938f81.zip
greybird: remove license cc-by-nc-sa-30 (#46802)
Greybird is dual-licensed as GPLv2 or later and CC-BY-SA 3.0 or later.
The first is free, and the second is unfree in nixpkgs. Currently both
licenses are listed in the package derivation. And nix takes that it is
unfree. If one of the licenses in the list is unfree. nix consider
that the software is unfree. Remove the unfree one.
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/themes/greybird/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/misc/themes/greybird/default.nix b/pkgs/misc/themes/greybird/default.nix
index bb782059ff6b..8cc1a6415fbe 100644
--- a/pkgs/misc/themes/greybird/default.nix
+++ b/pkgs/misc/themes/greybird/default.nix
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     description = "Grey and blue theme from the Shimmer Project for GTK+-based environments";
     homepage = https://github.com/shimmerproject/Greybird;
-    license = with licenses; [ gpl2Plus cc-by-nc-sa-30 ];
+    license = with licenses; [ gpl2Plus ]; # or alternatively: cc-by-nc-sa-30
     platforms = platforms.linux;
     maintainers = [ maintainers.romildo ];
   };