about summary refs log tree commit diff
path: root/pkgs/data/fonts/liberastika/default.nix
blob: 26420ab9e6ed9df49149fba85d6e3d500041af8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib, fetchzip }:

let
  version = "1.1.5";
in fetchzip rec {
  name = "liberastika-${version}";

  url = "mirror://sourceforge/project/lib-ka/liberastika-ttf-${version}.zip";

  stripRoot = false;

  postFetch = ''
    mkdir -p $out/share/fonts
    install -Dm644 $out/*.ttf -t $out/share/fonts/truetype
    shopt -s extglob dotglob
    rm -rf $out/!(share)
    shopt -u extglob dotglob
  '';

  sha256 = "sha256-1hoETOjPRUIzzM+NUR+g/Ph16jXmH2ARSlZHjgEwoeM=";

  meta = with lib; {
    description = "Liberation Sans fork with improved cyrillic support";
    homepage = "https://sourceforge.net/projects/lib-ka/";

    license = licenses.gpl2;
    platforms = platforms.all;
    hydraPlatforms = [];
    maintainers = [ maintainers.volth ];
  };
}