4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
47 lines
1.5 KiB
Nix
47 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;
|
|
};
|
|
}
|