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 31 lines 636 B view raw
1{ 2 lib, 3 stdenvNoCC, 4 fetchurl, 5}: 6 7stdenvNoCC.mkDerivation rec { 8 pname = "kacst"; 9 version = "2.01"; 10 11 src = fetchurl { 12 url = "mirror://debian/pool/main/f/fonts-${pname}/fonts-${pname}_${version}+mry.orig.tar.bz2"; 13 hash = "sha256-byiZzpYiMU6kJs+NSISfHPFzAnJtc8toNIbV/fKiMzg="; 14 }; 15 16 installPhase = '' 17 runHook preInstall 18 19 mkdir -p $out/share/fonts 20 cp -R kacst $out/share/fonts 21 22 runHook postInstall 23 ''; 24 25 meta = with lib; { 26 description = "KACST Latin-Arabic TrueType fonts"; 27 license = licenses.gpl2Only; 28 maintainers = with lib.maintainers; [ serge ]; 29 platforms = platforms.all; 30 }; 31}