Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
435 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{ stdenvNoCC, fetchzip }:
stdenvNoCC.mkDerivation {
pname = "mph-2b-damase";
version = "2";
src = fetchzip {
url = "https://web.archive.org/web/20160322114946/http://www.wazu.jp/downloads/damase_v.2.zip";
hash = "sha256-4x78D+c3ZBxfhTQQ4+gyxvrsuztHF2ItXLh4uA0PxvU=";
};
installPhase = ''
runHook preInstall
install -Dm644 *.ttf -t $out/share/fonts/truetype
runHook postInstall
'';
meta = { };
}