Files
nixpkgs/pkgs/by-name/cl/clearlyU/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

45 lines
888 B
Nix

{
lib,
stdenv,
fetchurl,
xorg,
libfaketime,
}:
stdenv.mkDerivation rec {
pname = "clearlyU";
version = "12-1.9";
src = fetchurl {
url = "https://www.math.nmsu.edu/~mleisher/Software/cu/cu${version}.tgz";
sha256 = "1xn14jbv3m1khy7ydvad9ydkn7yygdbhjy9wm1v000jzjwr3lv21";
};
nativeBuildInputs = [
xorg.fonttosfnt
xorg.mkfontscale
libfaketime
];
buildPhase = ''
# convert bdf fonts to otb
for i in *.bdf; do
name=$(basename "$i" .bdf)
faketime -f "1970-01-01 00:00:01" fonttosfnt -g 2 -m 2 -v -o "$name.otb" "$i"
done
'';
installPhase = ''
# install otb and bdf fonts
fontDir="$out/share/fonts"
install -m 644 -D *.bdf *.otb -t "$fontDir"
mkfontdir "$fontDir"
'';
meta = with lib; {
description = "Unicode font";
license = licenses.mit;
maintainers = [ maintainers.raskin ];
};
}