first
This commit is contained in:
commit
5323992f5b
11 changed files with 292 additions and 0 deletions
19
fonts/muller.nix
Normal file
19
fonts/muller.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ pkgs ? import <nixpkgs> {} }:
|
||||
pkgs.stdenv.mkDerivation rec {
|
||||
pname = "muller";
|
||||
version = "2015";
|
||||
|
||||
buildInputs = [ pkgs.unzip ];
|
||||
src = pkgs.requireFile {
|
||||
name = "Muller.zip";
|
||||
url = "https://cloud.niss.website";
|
||||
hash = "sha256-TfVk4El8geTSTsMko1Ej91it/OitXFloihpAAMcGAlg=";
|
||||
};
|
||||
|
||||
sourceRoot = ".";
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/fonts/truetype
|
||||
find Muller -name '*.ttf' -exec cp {} $out/share/fonts/truetype \;
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue