{ungoogled-,}chromium,chromedriver: 130.0.6723.58 -> 130.0.6723.69 (#351519)
[NixPkgs.git] / pkgs / data / fonts / dancing-script / default.nix
blob7960691959907cfa36a148cd8be9d0652077435e
1 { lib, stdenvNoCC, fetchFromGitHub }:
3 stdenvNoCC.mkDerivation {
4   pname = "dancing-script";
5   version = "2.0";
7   src = fetchFromGitHub {
8     owner = "impallari";
9     repo = "DancingScript";
10     rev = "f7f54bc1b8836601dae8696666bfacd306f77e34";
11     hash = "sha256-B9oAZFPH3dG/Nt5FfKfFVJYtfUKGK0AXNkQHRC7IgdU=";
12   };
14   installPhase = ''
15     runHook preInstall
17     install -m444 -Dt $out/share/fonts/truetype fonts/ttf/*.ttf
19     runHook postInstall
20   '';
22   meta = with lib; {
23     description = "Dancing Script";
24     longDescription = "A lively casual script where the letters bounce and change size slightly.";
25     homepage = "https://github.com/impallari/DancingScript";
26     license = licenses.ofl;
27     platforms = platforms.all;
28     maintainers = with maintainers; [ wdavidw ];
29   };