oldsindshi: 0.1 -> 1.0

This commit is contained in:
Mathnerd314 2020-05-15 17:47:49 -06:00
parent 49436a7613
commit 26cbda7929

View file

@ -1,26 +1,25 @@
{ lib, fetchzip, p7zip }: { lib, fetchzip }:
let let
version = "0.1"; version = "1.0";
in fetchzip rec { in fetchzip rec {
name = "oldsindhi-${version}"; name = "oldsindhi-${version}";
url = "https://github.com/MihailJP/oldsindhi/releases/download/0.1/OldSindhi-0.1.7z"; url = "https://github.com/MihailJP/oldsindhi/releases/download/v${version}/OldSindhi-${version}.tar.xz";
postFetch = '' postFetch = ''
${p7zip}/bin/7z x $downloadedFile tar -xJf $downloadedFile --strip-components=1
install -m444 -Dt $out/share/fonts/truetype *.ttf
install -m444 -Dt $out/share/fonts/truetype OldSindhi/*.ttf install -m444 -Dt $out/share/doc/${name} README *.txt
install -m444 -Dt $out/share/doc/${name} OldSindhi/README OldSindhi/*.txt
''; '';
sha256 = "0d4l9cg2vmh2pvnqsla8mgcwvc7wjxzcabhlli6633h3ifj2yp7b"; sha256 = "03c483vbrwz2fpdfbys42fmik9788zxfmjmc4fgq4s2d0mraa0j1";
meta = with lib; { meta = with lib; {
homepage = "https://github.com/MihailJP/oldsindhi"; homepage = "https://github.com/MihailJP/oldsindhi";
description = "Free Sindhi Khudabadi font"; description = "Free Sindhi Khudabadi font";
maintainers = with maintainers; [ mathnerd314 ]; maintainers = with maintainers; [ mathnerd314 ];
license = licenses.bsd2; license = with licenses; [mit ofl];
platforms = platforms.all; platforms = platforms.all;
}; };
} }