about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/ge/get-google-fonts/package.nix
blob: 0939c43443e3f8533dbf0e0323f44a4638f5ad28 (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
32
33
34
35
36
37
38
{ lib
, buildNpmPackage
, fetchFromGitHub
, fetchpatch
}:

buildNpmPackage {
  pname = "get-google-fonts";
  version = "1.2.2-unstable-2020-06-30";

  src = fetchFromGitHub {
    owner = "MrMaxie";
    repo = "get-google-fonts";
    rev = "2f8b15f6d7072533ca2ad5e0b74ccf28a313e8c8";
    hash = "sha256-LD+ur0GB2uefggQsdQRkKMwWB39HGiYYiJIrTLudcLc=";
  };

  patches = [
    # update lock file to contain all necessary information
    # https://github.com/MrMaxie/get-google-fonts/pull/27
    (fetchpatch {
      url = "https://github.com/MrMaxie/get-google-fonts/commit/f2c818fc7c9ee228db020305f432fd08eda7dc5f.patch";
      hash = "sha256-BszZdAZWpnkNETKYvSElg0lCjgcP7BNeXfMvePKAio4=";
    })
  ];

  npmDepsHash = "sha256-VUphB0Qq94rlcGrrsO2Nat/bD2IZTtdevGKsXFu/YdQ=";

  dontBuild = true;

  meta = with lib; {
    description = "Downloads and adapts Google fonts to working offline";
    mainProgram = "get-google-fonts";
    homepage = "https://github.com/MrMaxie/get-google-fonts";
    license = licenses.asl20;
    maintainers = with maintainers; [ SuperSandro2000 ];
  };
}