Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / ar / arcticons-sans / package.nix
blobfb743aceee5ccddd431e9634e776da10bbea53cf
1 { lib
2 , stdenvNoCC
3 , fetchzip
4 }:
6 stdenvNoCC.mkDerivation (finalAttrs: {
7   pname = "arcticons-sans";
8   version = "0.580";
10   src = fetchzip {
11     hash = "sha256-BRyYHOuz7zxD1zD4L4DmI9dFhGePmGFDqYmS0DIbvi8=";
12     url = "https://github.com/arcticons-team/arcticons-font/archive/refs/tags/${finalAttrs.version}.zip";
13   };
15   installPhase = ''
16     runHook preInstall
18     install -D -m444 -t $out/share/fonts/opentype $src/*.otf
20     runHook postInstall
21   '';
23   meta = {
24     description = "Arcticons Sans";
25     homepage = "https://github.com/arcticons-team/arcticons-font";
26     license = lib.licenses.ofl;
27     maintainers = with lib.maintainers; [ asininemonkey ];
28   };