nixfiles/overlay/comic-code/default.nix

14 lines
342 B
Nix
Raw Normal View History

2021-12-26 14:07:09 +00:00
{ fetchzip }:
fetchzip {
2021-12-21 15:26:21 +00:00
name = "comic-code-1.0";
2021-12-20 23:48:26 +00:00
2021-12-26 14:07:09 +00:00
url =
"https://cdn.discordapp.com/attachments/780878889924165652/919700644347142214/COCOD.ZIP";
2021-12-20 23:48:26 +00:00
sha256 = "sha256-MzEkMAopjpQBk24nRVDAtGNeF6f61XGww4rya2cU8TU=";
postFetch = ''
mkdir -p $out/share/fonts
unzip -j $downloadedFile \*.otf -d $out/share/fonts/truetype
'';
}