Turn more licenses into lib.licenses style
Should eval cleanly, as far as -A tarball tells me. Relevant: issue #2999, issue #739
This commit is contained in:
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
description = "Aurulent Sans";
|
||||
longDescription = "Aurulent Sans is a humanist sans serif intended to be used as an interface font.";
|
||||
homepage = http://delubrum.org/;
|
||||
license = "SIL";
|
||||
license = stdenv.lib.licenses.ofl;
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
homepage = "http://en.wikipedia.org/wiki/Open_Sans";
|
||||
license = "Apache";
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
maintainers = [ ];
|
||||
|
||||
@@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
|
||||
url = "https://fedorahosted.org/releases/l/i/liberation-fonts/liberation-fonts-ttf-${version}.tar.gz";
|
||||
sha256 = "010m4zfqan4w04b6bs9pm3gapn9hsb18bmwwgp2p6y6idj52g43q";
|
||||
};
|
||||
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/fonts/truetype
|
||||
cp -v $( find . -name '*.ttf') $out/share/fonts/truetype
|
||||
@@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
# See `License.txt' for details.
|
||||
license = "GPLv2 + exception";
|
||||
license = stdenv.lib.licenses.gpl2Oss;
|
||||
|
||||
homepage = https://fedorahosted.org/liberation-fonts/;
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ stdenv.mkDerivation rec {
|
||||
url = "https://fedorahosted.org/releases/l/i/liberation-fonts/${name}.tar.gz";
|
||||
sha256 = "1ymryvd2nw4jmw4w5y1i3ll2dn48rpkqzlsgv7994lk6qc9cdjvs";
|
||||
};
|
||||
|
||||
|
||||
buildInputs = [fontforge python pythonPackages.fonttools];
|
||||
|
||||
installPhase = ''
|
||||
@@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
# See `License.txt' for details.
|
||||
license = "GPLv2 + exception";
|
||||
license = stdenv.lib.licenses.gpl2Oss;
|
||||
|
||||
homepage = https://fedorahosted.org/liberation-fonts/;
|
||||
|
||||
|
||||
@@ -37,6 +37,6 @@ rec {
|
||||
maintainers = with a.lib.maintainers; [ relrod ];
|
||||
platforms = with a.lib.platforms; all;
|
||||
homepage = "http://blog.typekit.com/2012/09/24/source-code-pro/";
|
||||
license = "OFL";
|
||||
license = a.lib.licenses.ofl;
|
||||
};
|
||||
}) x
|
||||
|
||||
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
contemporary style and contains characteristics unique to
|
||||
the Ubuntu brand that convey a precise, reliable and free attitude.";
|
||||
homepage = http://font.ubuntu.com/;
|
||||
license = "free";
|
||||
license = stdenv.lib.licenses.free;
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
maintainers = [ stdenv.lib.maintainers.antono ];
|
||||
};
|
||||
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
description = "Mobile broadband service provider database";
|
||||
homepage = http://live.gnome.org/NetworkManager/MobileBroadband/ServiceProviders;
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
license = "CC-PD";
|
||||
license = stdenv.lib.licenses.publicDomain;
|
||||
maintainers = [ stdenv.lib.maintainers.urkud ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = http://poppler.freedesktop.org/;
|
||||
description = "Encoding files for Poppler, a PDF rendering library";
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
license = "free"; # more free licenses combined
|
||||
license = stdenv.lib.licenses.free; # more free licenses combined
|
||||
maintainers = [ stdenv.lib.maintainers.urkud ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user