fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 lib,
3 stdenvNoCC,
4 fetchzip,
5}:
6
7stdenvNoCC.mkDerivation rec {
8 pname = "fraunces";
9 version = "1.000";
10
11 src = fetchzip {
12 url = "https://github.com/undercasetype/Fraunces/releases/download/${version}/UnderCaseType_Fraunces_${version}.zip";
13 hash = "sha256-hu2G4Fs2I3TMEy/EBFnc88Pv3c8Mpc5rm3OwVvol7gQ=";
14 };
15
16 installPhase = ''
17 runHook preInstall
18
19 install -Dm644 */static/otf/*.otf -t $out/share/fonts/opentype
20 install -Dm644 */static/ttf/*.ttf */*.ttf -t $out/share/fonts/truetype
21
22 runHook postInstall
23 '';
24
25 meta = with lib; {
26 description = "Display, “Old Style” soft-serif typeface inspired by early 20th century typefaces";
27 homepage = "https://github.com/undercasetype/Fraunces";
28 license = licenses.ofl;
29 maintainers = [ ];
30 platforms = platforms.all;
31 };
32}