mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
30 lines
708 B
Nix
30 lines
708 B
Nix
{ lib, stdenvNoCC, fetchFromGitHub }:
|
||
|
||
stdenvNoCC.mkDerivation rec {
|
||
pname = "nahid-fonts";
|
||
version = "0.3.0";
|
||
|
||
src = fetchFromGitHub {
|
||
owner = "rastikerdar";
|
||
repo = "nahid-font";
|
||
rev = "v${version}";
|
||
hash = "sha256-r8/W0/pJV6OX954spIITvW7M6lIbZRpbsvEHErnXglg=";
|
||
};
|
||
|
||
installPhase = ''
|
||
runHook preInstall
|
||
|
||
find . -name '*.ttf' -exec install -m444 -Dt $out/share/fonts/nahid-fonts {} \;
|
||
|
||
runHook postInstall
|
||
'';
|
||
|
||
meta = with lib; {
|
||
homepage = "https://github.com/rastikerdar/nahid-font";
|
||
description = "A Persian (Farsi) Font - قلم (فونت) فارسی ناهید";
|
||
license = licenses.free;
|
||
platforms = platforms.all;
|
||
maintainers = [ ];
|
||
};
|
||
}
|