nixfiles/overlay/comic-code/default.nix

16 lines
291 B
Nix
Raw Normal View History

2022-08-30 13:29:00 +01:00
{ stdenv, unzip }:
stdenv.mkDerivation {
2021-12-21 15:26:21 +00:00
name = "comic-code-1.0";
2021-12-20 23:48:26 +00:00
2022-08-30 13:29:00 +01:00
srcs = ./Comic_Code.zip;
sourceRoot = ".";
2021-12-20 23:48:26 +00:00
2022-08-30 13:29:00 +01:00
nativeBuildInputs = [ unzip ];
buildInputs = [ unzip ];
installPhase = ''
2021-12-20 23:48:26 +00:00
mkdir -p $out/share/fonts
2022-08-30 13:29:00 +01:00
unzip -j $srcs \*.otf -d $out/share/fonts/truetype
2021-12-20 23:48:26 +00:00
'';
}