mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
34 lines
794 B
Nix
34 lines
794 B
Nix
{ lib, stdenvNoCC, fetchurl, unzip }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "ccsymbols";
|
|
version = "2020-04-19";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.ctrl.blog/file/${version}_cc-symbols.zip";
|
|
hash = "sha256-hkARhb8T6VgGAybYkVuPuebjhuk1dwiBJ1bZMwvYpMY=";
|
|
};
|
|
|
|
sourceRoot = ".";
|
|
|
|
nativeBuildInputs = [ unzip ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm644 CCSymbols.* -t $out/share/fonts/ccsymbols
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|