28 lines
744 B
Nix
28 lines
744 B
Nix
{ lib, stdenvNoCC }:
|
|
|
|
stdenvNoCC.mkDerivation {
|
|
pname = "loveletter";
|
|
version = "1.0.0";
|
|
|
|
# i think i got this off of a cd collection on nyaa and it had some bootleg stuff too
|
|
# looks to be the same as http://www.konaka.com/alice6/lain/resources.html
|
|
# downloaded locally bcz the source's uptime isn't trustworthy
|
|
|
|
src = ./.;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm644 -t $out/share/fonts/truetype ./loveletter.ttf
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "The LoveLetter font as featured in Serial Experiments Lain";
|
|
homepage = "http://www.konaka.com/alice6/lain/resources.html";
|
|
# idk what to put here:
|
|
# license = licenses.ofl;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|