chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / qu / quicksand / package.nix
blobe4fc1c2d5e0167d1098cef7d4eb125d3ee70ef01
1 { lib, stdenvNoCC, fetchFromGitHub }:
3 stdenvNoCC.mkDerivation {
4   pname = "quicksand";
5   version = "2.0-unstable-2021-01-15";
7   src = fetchFromGitHub {
8     owner = "andrew-paglinawan";
9     repo = "QuicksandFamily";
10     rev = "be4b9d638e1c79fa42d4a0ab0aa7fe29466419c7";
11     hash = "sha256-zkxm2u35Ll2qyCoUeuA0eumVjNSel+y1kkWoHxeNI/g=";
12     sparseCheckout = ["fonts"];
13   };
15   installPhase = ''
16     runHook preInstall
18     mkdir -p $out/share/fonts/quicksand
20     install -Dm444 fonts/*.ttf -t $out/share/fonts/quicksand/
21     install -Dm444 fonts/statics/*.ttf -t $out/share/fonts/quicksand/
23     runHook postInstall
24   '';
26   meta = {
27     homepage = "https://github.com/andrew-paglinawan/QuicksandFamily";
28     description = "Sans serif font designed using geometric shapes";
29     longDescription = ''
30       Quicksand is a sans serif typeface designed by Andrew Paglinawan
31       in 2008 using geometric shapes as it's core foundation. It is
32       designed for display purposes but legible enough to use in small
33       sizes as well. Quicksand Family is available in three styles
34       which are Light, Regular and Bold including true italics for each weight.
35     '';
36     license = with lib.licenses; [ ofl ];
37     maintainers = with lib.maintainers; [ hubble ];
38     platforms = lib.platforms.all;
39   };