mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
23 lines
529 B
Nix
23 lines
529 B
Nix
|
{ stdenv, fetchFromGitHub }:
|
||
|
|
||
|
fetchFromGitHub rec {
|
||
|
rev = "1.0";
|
||
|
name = "et-book-${rev}";
|
||
|
owner = "jethrokuan";
|
||
|
repo = "et-book";
|
||
|
sha256 = "1bfb1l8k7fzgk2l8cikiyfn5x9m0fiwrnsbc1483p8w3qp58s5n2";
|
||
|
|
||
|
postFetch = ''
|
||
|
tar -xzf $downloadedFile
|
||
|
mkdir -p $out/share/fonts/truetype
|
||
|
cp -t $out/share/fonts/truetype ${name}/*.ttf
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Font for ET Book";
|
||
|
license = licenses.free;
|
||
|
platforms = platforms.all;
|
||
|
maintainers = with maintainers; [ jethro ];
|
||
|
};
|
||
|
}
|