mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 07:00:43 +00: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
18 lines
371 B
Nix
18 lines
371 B
Nix
{ lib, fetchzip }:
|
|
|
|
fetchzip {
|
|
name = "ttf-bitstream-vera-1.10";
|
|
|
|
url = mirror://gnome/sources/ttf-bitstream-vera/1.10/ttf-bitstream-vera-1.10.tar.bz2;
|
|
|
|
postFetch = ''
|
|
tar -xjf $downloadedFile --strip-components=1
|
|
install -m444 -Dt $out/share/fonts/truetype *.ttf
|
|
'';
|
|
|
|
sha256 = "179hal4yi3367jg8rsvqx6h2w4s0kn9zzrv8c47sslyg28g39s4m";
|
|
|
|
meta = {
|
|
};
|
|
}
|