nixpkgs/pkgs/data/fonts/ccsymbols/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
794 B
Nix
Raw Normal View History

{ lib, stdenvNoCC, fetchurl, unzip }:
2022-03-09 12:21:50 +00:00
stdenvNoCC.mkDerivation rec {
2022-03-09 12:21:50 +00:00
pname = "ccsymbols";
version = "2020-04-19";
src = fetchurl {
url = "https://www.ctrl.blog/file/${version}_cc-symbols.zip";
hash = "sha256-hkARhb8T6VgGAybYkVuPuebjhuk1dwiBJ1bZMwvYpMY=";
};
2022-03-09 12:21:50 +00:00
sourceRoot = ".";
2022-03-09 12:21:50 +00:00
nativeBuildInputs = [ unzip ];
installPhase = ''
runHook preInstall
install -Dm644 CCSymbols.* -t $out/share/fonts/ccsymbols
runHook postInstall
2022-03-09 12:21:50 +00:00
'';
passthru = { inherit pname version; };
meta = with lib; {
description = "Creative Commons symbol font";
homepage = "https://www.ctrl.blog/entry/creative-commons-unicode-fallback-font.html";
maintainers = with maintainers; [ qyliss ];
license = licenses.publicDomain;
platforms = platforms.all;
};
}