nixpkgs/pkgs/data/fonts/marathi-cursive/default.nix

28 lines
820 B
Nix
Raw Normal View History

{ lib, fetchzip, p7zip }:
2015-10-18 19:06:04 +00:00
let
2015-10-18 19:06:04 +00:00
version = "1.2";
in fetchzip rec {
name = "marathi-cursive-${version}";
2015-10-18 19:06:04 +00:00
url = "https://github.com/MihailJP/MarathiCursive/releases/download/${version}/MarathiCursive-${version}.7z";
2015-10-18 19:06:04 +00:00
postFetch = ''
${p7zip}/bin/7z x $downloadedFile
cd MarathiCursive
2015-10-18 19:06:04 +00:00
install -m444 -Dt $out/share/fonts/marathi-cursive *.otf *.ttf
install -m444 -Dt $out/share/doc/${name} README *.txt
2015-10-18 19:06:04 +00:00
'';
sha256 = "0wq4w79x8r5w6ikm9amcmapf0jcdgifs9zf1pbnw3fk4ncz5s551";
meta = with lib; {
homepage = https://github.com/MihailJP/MarathiCursive;
2015-10-18 19:06:04 +00:00
description = "Modi script font with Graphite and OpenType support";
maintainers = with maintainers; [ mathnerd314 ];
license = licenses.mit; # It's the M+ license, M+ is MIT(-ish)
platforms = platforms.all;
};
}