nika-fonts: init at 1.0.0 (#58495)
This commit is contained in:
parent
3a6bc6e35d
commit
2806041afc
26
pkgs/data/fonts/nika-fonts/default.nix
Normal file
26
pkgs/data/fonts/nika-fonts/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "nika-fonts";
|
||||||
|
version = "1.0.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "font-store";
|
||||||
|
repo = "NikaFont";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "16dhk87vmjnywl5wqsl9dzp12ddpfk57w08f7811m3ijqadscdwc";
|
||||||
|
};
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/share/fonts/nika-fonts
|
||||||
|
cp -v $( find . -name '*.ttf') $out/share/fonts/nika-fonts
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/font-store/NikaFont/;
|
||||||
|
description = "Persian/Arabic Open Source Font";
|
||||||
|
license = licenses.ofl;
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = [ maintainers.linarcx ];
|
||||||
|
};
|
||||||
|
}
|
@ -11926,6 +11926,8 @@ in
|
|||||||
nix = nixUnstable;
|
nix = nixUnstable;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nika-fonts = callPackage ../data/fonts/nika-fonts { };
|
||||||
|
|
||||||
nlohmann_json = callPackage ../development/libraries/nlohmann_json { };
|
nlohmann_json = callPackage ../development/libraries/nlohmann_json { };
|
||||||
|
|
||||||
nntp-proxy = callPackage ../applications/networking/nntp-proxy { };
|
nntp-proxy = callPackage ../applications/networking/nntp-proxy { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user