Files
nixpkgs/pkgs/by-name/li/libre-caslon/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

51 lines
1.5 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation rec {
pname = "libre-caslon";
version = "1.002";
srcs = [
(fetchFromGitHub {
owner = "impallari";
repo = "Libre-Caslon-Text";
rev = "c31e21f7e8cf91f18d90f778ce20e66c68219c74";
name = "libre-caslon-text-${version}-src";
sha256 = "0zczv9qm8cgc7w1p64mnf0p0fi7xv89zhf1zzf1qcna15kbgc705";
})
(fetchFromGitHub {
owner = "impallari";
repo = "Libre-Caslon-Display";
rev = "3491f6a9cfde2bc15e736463b0bc7d93054d5da1";
name = "libre-caslon-display-${version}-src";
sha256 = "12jrny3y8w8z61lyw470drnhliji5b24lgxap4w3brp6z3xjph95";
})
];
sourceRoot = ".";
installPhase = ''
mkdir -p $out/share/fonts/opentype
mkdir -p $out/share/doc/${pname}-${version}
cp -v "libre-caslon-text-${version}-src/fonts/OTF/"*.otf $out/share/fonts/opentype/
cp -v "libre-caslon-display-${version}-src/fonts/OTF/"*.otf $out/share/fonts/opentype/
cp -v libre-caslon-text-${version}-src/README.md libre-caslon-text-${version}-src/FONTLOG.txt $out/share/doc/${pname}-${version}
'';
outputHashAlgo = "sha256";
outputHashMode = "recursive";
outputHash = "05aajwny99yqzn1nnq1blx6h7rl54x056y12hyawfbigkzxhscns";
meta = with lib; {
description = "Caslon fonts based on hand-lettered American Caslons of 1960s";
homepage = "http://www.impallari.com/librecaslon";
license = licenses.ofl;
maintainers = with maintainers; [ cmfwyp ];
platforms = platforms.all;
};
}