Add Futura
This commit is contained in:
parent
91c8e77d25
commit
bc76999a00
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
secrets/fonts/** filter=git-crypt-4406E80E13CD656C diff=git-crypt-4406E80E13CD656C
|
1
overlays/fonts.nix
Normal file
1
overlays/fonts.nix
Normal file
|
@ -0,0 +1 @@
|
|||
import ./fonts
|
4
overlays/fonts/default.nix
Normal file
4
overlays/fonts/default.nix
Normal 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
20
overlays/fonts/futura.nix
Normal 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 = "";
|
||||
};
|
||||
}
|
BIN
secrets/fonts/Futura_Std/FuturaStd-Bold.otf
Normal file
BIN
secrets/fonts/Futura_Std/FuturaStd-Bold.otf
Normal file
Binary file not shown.
BIN
secrets/fonts/Futura_Std/FuturaStd-BoldOblique.otf
Normal file
BIN
secrets/fonts/Futura_Std/FuturaStd-BoldOblique.otf
Normal file
Binary file not shown.
BIN
secrets/fonts/Futura_Std/FuturaStd-Book.otf
Normal file
BIN
secrets/fonts/Futura_Std/FuturaStd-Book.otf
Normal file
Binary file not shown.
BIN
secrets/fonts/Futura_Std/FuturaStd-BookOblique.otf
Normal file
BIN
secrets/fonts/Futura_Std/FuturaStd-BookOblique.otf
Normal file
Binary file not shown.
BIN
secrets/fonts/Futura_Std/FuturaStd-CondExtraBoldObl.otf
Normal file
BIN
secrets/fonts/Futura_Std/FuturaStd-CondExtraBoldObl.otf
Normal file
Binary file not shown.
BIN
secrets/fonts/Futura_Std/FuturaStd-Condensed.otf
Normal file
BIN
secrets/fonts/Futura_Std/FuturaStd-Condensed.otf
Normal file
Binary file not shown.
BIN
secrets/fonts/Futura_Std/FuturaStd-CondensedBold.otf
Normal file
BIN
secrets/fonts/Futura_Std/FuturaStd-CondensedBold.otf
Normal file
Binary file not shown.
BIN
secrets/fonts/Futura_Std/FuturaStd-CondensedBoldObl.otf
Normal file
BIN
secrets/fonts/Futura_Std/FuturaStd-CondensedBoldObl.otf
Normal file
Binary file not shown.
BIN
secrets/fonts/Futura_Std/FuturaStd-CondensedExtraBd.otf
Normal file
BIN
secrets/fonts/Futura_Std/FuturaStd-CondensedExtraBd.otf
Normal file
Binary file not shown.
BIN
secrets/fonts/Futura_Std/FuturaStd-CondensedLight.otf
Normal file
BIN
secrets/fonts/Futura_Std/FuturaStd-CondensedLight.otf
Normal file
Binary file not shown.
BIN
secrets/fonts/Futura_Std/FuturaStd-CondensedLightObl.otf
Normal file
BIN
secrets/fonts/Futura_Std/FuturaStd-CondensedLightObl.otf
Normal file
Binary file not shown.
BIN
secrets/fonts/Futura_Std/FuturaStd-CondensedOblique.otf
Normal file
BIN
secrets/fonts/Futura_Std/FuturaStd-CondensedOblique.otf
Normal file
Binary file not shown.
BIN
secrets/fonts/Futura_Std/FuturaStd-ExtraBold.otf
Normal file
BIN
secrets/fonts/Futura_Std/FuturaStd-ExtraBold.otf
Normal file
Binary file not shown.
BIN
secrets/fonts/Futura_Std/FuturaStd-ExtraBoldOblique.otf
Normal file
BIN
secrets/fonts/Futura_Std/FuturaStd-ExtraBoldOblique.otf
Normal file
Binary file not shown.
BIN
secrets/fonts/Futura_Std/FuturaStd-Heavy.otf
Normal file
BIN
secrets/fonts/Futura_Std/FuturaStd-Heavy.otf
Normal file
Binary file not shown.
BIN
secrets/fonts/Futura_Std/FuturaStd-HeavyOblique.otf
Normal file
BIN
secrets/fonts/Futura_Std/FuturaStd-HeavyOblique.otf
Normal file
Binary file not shown.
BIN
secrets/fonts/Futura_Std/FuturaStd-Light.otf
Normal file
BIN
secrets/fonts/Futura_Std/FuturaStd-Light.otf
Normal file
Binary file not shown.
BIN
secrets/fonts/Futura_Std/FuturaStd-LightOblique.otf
Normal file
BIN
secrets/fonts/Futura_Std/FuturaStd-LightOblique.otf
Normal file
Binary file not shown.
BIN
secrets/fonts/Futura_Std/FuturaStd-Medium.otf
Normal file
BIN
secrets/fonts/Futura_Std/FuturaStd-Medium.otf
Normal file
Binary file not shown.
BIN
secrets/fonts/Futura_Std/FuturaStd-MediumOblique.otf
Normal file
BIN
secrets/fonts/Futura_Std/FuturaStd-MediumOblique.otf
Normal file
Binary file not shown.
|
@ -31,5 +31,9 @@ in
|
|||
"transmission.local"
|
||||
];
|
||||
};
|
||||
|
||||
fonts.fonts = with pkgs; [
|
||||
futura-otf
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue