Add Anarchist's Stencil font
This commit is contained in:
parent
25d157baa7
commit
93e637e9f5
|
@ -138,6 +138,7 @@ let systemInformation = import ./system/system-information.nix; in
|
||||||
fonts = {
|
fonts = {
|
||||||
packages = with pkgs; with import packages/all-packages.nix nixpkgs; [
|
packages = with pkgs; with import packages/all-packages.nix nixpkgs; [
|
||||||
justseeds
|
justseeds
|
||||||
|
anarchists-stencil
|
||||||
manrope
|
manrope
|
||||||
google-fonts
|
google-fonts
|
||||||
comic-mono
|
comic-mono
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
dw = pkgs.callPackage ./dw.nix {};
|
dw = pkgs.callPackage ./dw.nix {};
|
||||||
justseeds = pkgs.callPackage ./justseeds.nix {};
|
justseeds = pkgs.callPackage ./justseeds.nix {};
|
||||||
|
anarchists-stencil = pkgs.callPackage ./anarchists-stencil.nix {};
|
||||||
}
|
}
|
23
packages/anarchists-stencil.nix
Normal file
23
packages/anarchists-stencil.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{pkgs, stdenv, lib, ...}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
pname = "anarchists-stencil";
|
||||||
|
version = "1.000";
|
||||||
|
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = "https://www.dimka.com/fonts/anarchists-stencil/anarchists-stencil.woff2";
|
||||||
|
hash = "sha256-gkXQcarvnoEzz/8JjKnZI2ck6gzg9U2N9bbZfODKD+o=";
|
||||||
|
};
|
||||||
|
|
||||||
|
dontUnpack = true;
|
||||||
|
installPhase = ''
|
||||||
|
install -D -m 444 $src -t $out/share/fonts
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Anarchists Stencil";
|
||||||
|
homepage = "https://www.myfonts.com/collections/anarchists-stencil-font-dimka-fonts";
|
||||||
|
license = lib.licenses.unfree;
|
||||||
|
maintainers = [];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue