Merge pull request #193943 from erdnaxe/ubuntu-font-family-make-derivation

ubuntu-font-family: use mkDerivation
This commit is contained in:
Jörg Thalheim 2022-10-02 17:37:36 +02:00 committed by GitHub
commit b575af8488
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,26 +1,30 @@
{ lib, fetchzip }:
{ lib, stdenv, fetchzip }:
fetchzip {
name = "ubuntu-font-family-0.83";
stdenv.mkDerivation rec {
pname = "ubuntu-font-family";
version = "0.83";
url = "https://assets.ubuntu.com/v1/fad7939b-ubuntu-font-family-0.83.zip";
src = fetchzip {
url = "https://assets.ubuntu.com/v1/fad7939b-${pname}-${version}.zip";
hash = "sha256-FAg1xn8Gcbwmuvqtg9SquSet4oTT9nqE+Izeq7ZMVcA=";
};
postFetch = ''
mkdir -p $out/share/fonts
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/ubuntu
installPhase = ''
install -D -m 644 -t "$out/share/fonts/truetype" *.ttf
'';
sha256 = "090y665h4kf2bi623532l6wiwkwnpd0xds0jr7560xwfwys1hiqh";
outputHashMode = "recursive";
outputHash = "sha256-EEcYtOeOd2DKyRLo1kG7lk8euaFilCFMXMJNAosxHiQ=";
meta = {
meta = with lib; {
description = "Ubuntu Font Family";
longDescription = "The Ubuntu typeface has been specially
created to complement the Ubuntu tone of voice. It has a
contemporary style and contains characteristics unique to
the Ubuntu brand that convey a precise, reliable and free attitude.";
homepage = "http://font.ubuntu.com/";
license = lib.licenses.free;
platforms = lib.platforms.all;
maintainers = [ lib.maintainers.antono ];
license = licenses.free;
platforms = platforms.all;
maintainers = with maintainers; [ antono ];
};
}