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.
This commit is contained in:
José Romildo Malaquias 2018-09-18 08:29:28 -03:00 committed by xeji
parent ffaaac7f94
commit 1944defa4c

View file

@ -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 ];
};