nixpkgs/pkgs/data/fonts/kacst/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
629 B
Nix
Raw Normal View History

{ lib, stdenvNoCC, fetchurl }:
2022-03-29 02:57:24 +02:00
stdenvNoCC.mkDerivation rec {
pname = "kacst";
2022-03-29 02:57:24 +02:00
version = "2.01";
src = fetchurl {
url = "mirror://debian/pool/main/f/fonts-${pname}/fonts-${pname}_${version}+mry.orig.tar.bz2";
hash = "sha256-byiZzpYiMU6kJs+NSISfHPFzAnJtc8toNIbV/fKiMzg=";
};
installPhase = ''
runHook preInstall
2022-03-29 02:57:24 +02:00
mkdir -p $out/share/fonts
cp -R kacst $out/share/fonts
runHook postInstall
2022-03-29 02:57:24 +02:00
'';
meta = with lib; {
description = "KACST Latin-Arabic TrueType fonts";
license = licenses.gpl2Only;
maintainers = with lib.maintainers; [ serge ];
platforms = platforms.all;
};
}