b12f restructure #1

Merged
teutat3s merged 218 commits from b12f into main 2020-11-24 18:27:01 +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
];
};
}