nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at devShellTools-shell 39 lines 799 B view raw
1{ 2 lib, 3 stdenvNoCC, 4 fetchzip, 5}: 6 7let 8 majorVersion = "0"; 9 minorVersion = "102"; 10in 11stdenvNoCC.mkDerivation { 12 pname = "aileron"; 13 version = "${majorVersion}.${minorVersion}"; 14 15 src = fetchzip { 16 url = "https://dotcolon.net/download/fonts/aileron_${majorVersion}${minorVersion}.zip"; 17 hash = "sha256-Ht48gwJZrn0djo1yl6jHZ4+0b710FVwStiC1Zk5YXME="; 18 stripRoot = false; 19 }; 20 21 installPhase = '' 22 runHook preInstall 23 24 install -D -m444 -t $out/share/fonts/opentype $src/*.otf 25 26 runHook postInstall 27 ''; 28 29 meta = with lib; { 30 homepage = "http://dotcolon.net/font/aileron/"; 31 description = "Helvetica font in nine weights"; 32 platforms = platforms.all; 33 maintainers = with maintainers; [ 34 leenaars 35 minijackson 36 ]; 37 license = licenses.cc0; 38 }; 39}