mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
27 lines
604 B
Nix
27 lines
604 B
Nix
{ lib, stdenvNoCC, fetchurl }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "baekmuk-ttf";
|
|
version = "2.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://kldp.net/baekmuk/release/865-${pname}-${version}.tar.gz";
|
|
hash = "sha256-CKt9/7VdWIfMlCzjcPXjO3VqVfu06vC5DyRAcOjVGII=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -m444 -Dt $out/share/fonts ttf/*.ttf
|
|
install -m444 -Dt $out/share/doc/${pname}-${version} COPYRIGHT*
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Korean font";
|
|
homepage = "http://kldp.net/projects/baekmuk/";
|
|
license = "BSD-like";
|
|
};
|
|
}
|