b12f-to-master #16

Merged
teutat3s merged 29 commits from refs/pull/16/head into b12f 2021-09-08 22:00:04 +00:00
25 changed files with 30 additions and 0 deletions
Showing only changes of commit bc76999a00 - Show all commits

1
.gitattributes vendored Normal file
View file

@ -0,0 +1 @@
secrets/fonts/** filter=git-crypt-4406E80E13CD656C diff=git-crypt-4406E80E13CD656C

1
overlays/fonts.nix Normal file
View file

@ -0,0 +1 @@
import ./fonts

View file

@ -0,0 +1,4 @@
final: prev:
with final; {
futura-otf = import ./futura.nix { stdenv = final.stdenv; fetchFromGitHub = final.fetchFromGitHub; };
}

20
overlays/fonts/futura.nix Normal file
View file

@ -0,0 +1,20 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "futura";
version = "1.0.0";
src = ../../secrets/fonts/Futura_Std;
installPhase = ''
mkdir -p $out/share/fonts/otf/
cp -r * $out/share/fonts/otf/
'';
meta = with stdenv.lib; {
description = "";
longDescription = ''
'';
homepage = "";
};
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -31,5 +31,9 @@ in
"transmission.local"
];
};
fonts.fonts = with pkgs; [
futura-otf
];
};
}