30 lines
703 B
Nix
30 lines
703 B
Nix
|
{ lib, stdenvNoCC, fetchFromGitHub }:
|
|||
|
|
|||
|
stdenvNoCC.mkDerivation rec {
|
|||
|
pname = "samim-fonts";
|
|||
|
version = "4.0.5";
|
|||
|
|
|||
|
src = fetchFromGitHub {
|
|||
|
owner = "rastikerdar";
|
|||
|
repo = "samim-font";
|
|||
|
rev = "v${version}";
|
|||
|
hash = "sha256-DVBMsNOVAVwzlZ3cDus/3CSsC05bLZalQ2KeueEvwXs=";
|
|||
|
};
|
|||
|
|
|||
|
installPhase = ''
|
|||
|
runHook preInstall
|
|||
|
|
|||
|
find . -name '*.ttf' -exec install -m444 -Dt $out/share/fonts/samim-fonts {} \;
|
|||
|
|
|||
|
runHook postInstall
|
|||
|
'';
|
|||
|
|
|||
|
meta = with lib; {
|
|||
|
homepage = "https://github.com/rastikerdar/samim-font";
|
|||
|
description = "Persian (Farsi) Font - فونت (قلم) فارسی صمیم";
|
|||
|
license = licenses.ofl;
|
|||
|
platforms = platforms.all;
|
|||
|
maintainers = [ ];
|
|||
|
};
|
|||
|
}
|