nixpkgs/pkgs/data/fonts/mph-2b-damase/default.nix

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

22 lines
444 B
Nix
Raw Normal View History

2023-01-25 12:34:24 +01:00
{ lib, stdenvNoCC, fetchzip }:
2023-01-25 12:34:24 +01:00
stdenvNoCC.mkDerivation rec {
pname = "mph-2b-damase";
version = "2";
2023-01-25 12:34:24 +01:00
src = fetchzip {
url = "https://web.archive.org/web/20160322114946/http://www.wazu.jp/downloads/damase_v.2.zip";
hash = "sha256-4x78D+c3ZBxfhTQQ4+gyxvrsuztHF2ItXLh4uA0PxvU=";
};
2023-01-25 12:34:24 +01:00
installPhase = ''
runHook preInstall
2023-01-25 12:34:24 +01:00
install -Dm644 *.ttf -t $out/share/fonts/truetype
2023-01-25 12:34:24 +01:00
runHook postInstall
'';
meta = { };
}