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

27 lines
712 B
Nix
Raw Normal View History

{ lib, fetchzip, p7zip }:
2015-10-18 09:48:15 -07:00
2017-08-10 12:43:49 -07:00
let
2015-10-18 09:48:15 -07:00
version = "0.1";
2017-08-10 12:43:49 -07:00
in fetchzip rec {
name = "oldsindhi-${version}";
2015-10-18 09:48:15 -07:00
2017-08-10 12:43:49 -07:00
url = "https://github.com/MihailJP/oldsindhi/releases/download/0.1/OldSindhi-0.1.7z";
2015-10-18 09:48:15 -07:00
2017-08-10 12:43:49 -07:00
postFetch = ''
${p7zip}/bin/7z x $downloadedFile
2015-10-18 09:48:15 -07:00
install -m444 -Dt $out/share/fonts/truetype OldSindhi/*.ttf
install -m444 -Dt $out/share/doc/${name} OldSindhi/README OldSindhi/*.txt
2015-10-18 09:48:15 -07:00
'';
sha256 = "0d4l9cg2vmh2pvnqsla8mgcwvc7wjxzcabhlli6633h3ifj2yp7b";
2017-08-10 12:43:49 -07:00
meta = with lib; {
homepage = "https://github.com/MihailJP/oldsindhi";
2015-10-18 09:48:15 -07:00
description = "Free Sindhi Khudabadi font";
maintainers = with maintainers; [ mathnerd314 ];
license = licenses.bsd2;
platforms = platforms.all;
};
}