29 lines
618 B
Nix
29 lines
618 B
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
fetchzip,
|
|
}:
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "ttf-ms-win10";
|
|
version = "1.0";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/streetsamurai00mi/ttf-ms-win10/archive/refs/heads/build.zip";
|
|
hash = "sha256-UwkHlrSRaXhfoMlimyXFETV9yq1SbvUXykrhigf+wP8=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm644 *.ttf -t $out/share/fonts/truetype
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/streetsamurai00mi/ttf-ms-win10";
|
|
description = "Windows 10 ttf Fonts";
|
|
license = licenses.unfree;
|
|
maintainers = [];
|
|
};
|
|
}
|