571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
43 lines
1.4 KiB
Nix
43 lines
1.4 KiB
Nix
{ lib, stdenvNoCC, fetchFromGitHub }:
|
||
|
||
stdenvNoCC.mkDerivation rec {
|
||
pname = "cabin";
|
||
version = "1.005";
|
||
|
||
src = fetchFromGitHub {
|
||
owner = "impallari";
|
||
repo = "Cabin";
|
||
rev = "982839c790e9dc57c343972aa34c51ed3b3677fd";
|
||
hash = "sha256-9l4QcwCot340Bq41ER68HSZGQ9h0opyzgG3DG/fVZ5s=";
|
||
};
|
||
|
||
installPhase = ''
|
||
runHook preInstall
|
||
|
||
install -m444 -Dt $out/share/fonts/opentype fonts/OTF/*.otf
|
||
install -m444 -Dt $out/share/doc/${pname}-${version} README.md FONTLOG.txt
|
||
|
||
runHook postInstall
|
||
'';
|
||
|
||
meta = with lib; {
|
||
description = "Humanist sans with 4 weights and true italics";
|
||
longDescription = ''
|
||
The Cabin font family is a humanist sans with 4 weights and true italics,
|
||
inspired by Edward Johnston’s and Eric Gill’s typefaces, with a touch of
|
||
modernism. Cabin incorporates modern proportions, optical adjustments, and
|
||
some elements of the geometric sans. It remains true to its roots, but has
|
||
its own personality.
|
||
|
||
The weight distribution is almost monotone, although top and bottom curves
|
||
are slightly thin. Counters of the b, g, p and q are rounded and optically
|
||
adjusted. The curved stem endings have a 10 degree angle. E and F have
|
||
shorter center arms. M is splashed.
|
||
'';
|
||
homepage = "http://www.impallari.com/cabin";
|
||
license = licenses.ofl;
|
||
maintainers = with maintainers; [ cmfwyp ];
|
||
platforms = platforms.all;
|
||
};
|
||
}
|