Merge pull request #273789 from phunehehe/quinze
quinze: init at 2018-09-22
This commit is contained in:
commit
fc78b8efd6
28
pkgs/by-name/qu/quinze/package.nix
Normal file
28
pkgs/by-name/qu/quinze/package.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ lib, stdenvNoCC, fetchzip }:
|
||||
|
||||
stdenvNoCC.mkDerivation {
|
||||
name = "quinze";
|
||||
version = "2018-09-22";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://fontlibrary.org/assets/downloads/quinze/0271bb7be00ea75dcfa06ef7c7f1054e/quinze.zip";
|
||||
hash = "sha256-6C6drbAHme38tF2PtY/YFDdHCbR0JURs4F/K+KZqKiQ=";
|
||||
stripRoot = false;
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
install -m444 -Dt $out/share/fonts/truetype *.ttf
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "narrow monospaced font, designed to fit a fifteen pixel bitmap";
|
||||
homepage = "https://fontlibrary.org/en/font/quinze";
|
||||
license = licenses.ofl;
|
||||
maintainers = with maintainers; [ phunehehe ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user