besley: init at 4.0-unstable-2023-01-09 (#438094)

authored by Tristan Ross and committed by GitHub 6ca2222c e64a95d9

+33
+33
pkgs/by-name/be/besley/package.nix
··· 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchFromGitHub, 5 + }: 6 + stdenvNoCC.mkDerivation { 7 + pname = "besley"; 8 + version = "4.0-unstable-2023-01-09"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "indestructible-type"; 12 + repo = "Besley"; 13 + rev = "99d5b97fcb863c4a667571ac8f86f745c345d3ab"; 14 + hash = "sha256-N6QU3Pd6EnIrdbRtDT3mW5ny683DBWo0odADJBSdA2E="; 15 + }; 16 + 17 + installPhase = '' 18 + runHook preInstall 19 + 20 + mkdir -p $out/share/fonts/truetype 21 + cp fonts/*/*.otf $out/share/fonts/truetype 22 + 23 + runHook postInstall 24 + ''; 25 + 26 + meta = { 27 + homepage = "https://indestructibletype.com/Besley.html"; 28 + description = "Besley an antique slab serif font by indestructible type*"; 29 + license = lib.licenses.ofl; 30 + platforms = lib.platforms.all; 31 + maintainers = with lib.maintainers; [ gavink97 ]; 32 + }; 33 + }