mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +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
21 lines
509 B
Nix
21 lines
509 B
Nix
{ lib, fetchzip }:
|
|
|
|
fetchzip rec {
|
|
name = "baekmuk-ttf-2.2";
|
|
|
|
url = "http://kldp.net/baekmuk/release/865-${name}.tar.gz";
|
|
postFetch = ''
|
|
tar -xzvf $downloadedFile --strip-components=1
|
|
install -m444 -Dt $out/share/fonts ttf/*.ttf
|
|
install -m444 -Dt $out/share/doc/${name} COPYRIGHT*
|
|
'';
|
|
sha256 = "1jgsvack1l14q8lbcv4qhgbswi30mf045k37rl772hzcmx0r206g";
|
|
|
|
meta = {
|
|
description = "Korean font";
|
|
homepage = http://kldp.net/projects/baekmuk/;
|
|
license = "BSD-like";
|
|
};
|
|
}
|
|
|