mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
c9eb44eab3
* make font derivations fixed-output where applicable * fix dead links * `stdenv.lib` -> `lib` where `stdenv` is not involved * remove `meta.platforms = [ unix ]` and `meta.platforms = [ linux ]` because the restriction has no sense for data packages
27 lines
657 B
Nix
27 lines
657 B
Nix
{ lib, fetchzip }:
|
|
|
|
let
|
|
date = "2016-05-13";
|
|
in fetchzip {
|
|
name = "siji-${date}";
|
|
|
|
url = https://github.com/stark/siji/archive/95369afac3e661cb6d3329ade5219992c88688c1.zip;
|
|
|
|
postFetch = ''
|
|
unzip -j $downloadedFile
|
|
|
|
install -D *.pcf -t $out/share/fonts/pcf
|
|
install -D *.bdf -t $out/share/fonts/bdf
|
|
'';
|
|
|
|
sha256 = "1ymcbirdbkqaf0xs2y00l0wachb4yxh1fgqm5avqwvccs0lsfj1d";
|
|
|
|
meta = {
|
|
homepage = https://github.com/stark/siji;
|
|
description = "An iconic bitmap font based on Stlarch with additional glyphs";
|
|
license = lib.licenses.gpl2;
|
|
platforms = lib.platforms.all;
|
|
maintainers = [ lib.maintainers.asymmetric ];
|
|
};
|
|
}
|