Removed fhwa and added Highway Gothic.

This commit is contained in:
vorboyvo 2024-05-06 23:58:25 -04:00
parent 14b669f927
commit 8f4324418a
7 changed files with 33 additions and 33 deletions

View file

@ -1,18 +0,0 @@
{ pkgs }:
with pkgs;
stdenv.mkDerivation rec {
name = "fhwa";
version = "2020";
src = requireFile {
name = "fhwaseries.tar.gz";
url = "";
sha256 = "fac52a7971f8a4a6abea45676bf7bffb142879c53166e42bdfe157b44c1210e5";
};
# sourceRoot = "fonts/ttf";
installPhase = ''
tar -xvf $src
mkdir -p $out/share/fonts/opentype
cp fonts/*.otf $out/share/fonts/opentype
'';
}

Binary file not shown.

View file

@ -1,13 +0,0 @@
{
description = "Flake containing FHWA font";
outputs = { self, nixpkgs }: {
packages.x86_64-linux.fhwa =
let pkgs = import nixpkgs { system = "x86_64-linux"; };
in pkgs.callPackage ./fhwa.nix {};
packages.x86_64-linux.default = self.packages.x86_64-linux.fhwa;
};
}

View file

@ -3,8 +3,8 @@
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 0, "lastModified": 0,
"narHash": "sha256-cfh1hi+6muQMbi9acOlju3V1gl8BEaZBXBR9jQfQi4U=", "narHash": "sha256-mdTQw2XlariysyScCv2tTE45QSU9v/ezLcHJ22f0Nxc=",
"path": "/nix/store/m5i890m2g4pnyflpn48d1dpzzmwp5q4p-source", "path": "/nix/store/801l7gvdz7yaibhjsxqx82sc7zkakjbq-source",
"type": "path" "type": "path"
}, },
"original": { "original": {

View file

@ -0,0 +1,13 @@
{
description = "Flake containing Highway Gothic font";
outputs = { self, nixpkgs }: {
packages.x86_64-linux.highway-gothic =
let pkgs = import nixpkgs { system = "x86_64-linux"; };
in pkgs.callPackage ./highway-gothic.nix {};
packages.x86_64-linux.default = self.packages.x86_64-linux.highway-gothic;
};
}

View file

@ -0,0 +1,18 @@
{ pkgs }:
with pkgs;
stdenv.mkDerivation rec {
name = "highway-gothic";
version = "1.0.0";
src = requireFile {
name = "highway-gothic.tar.gz";
url = "";
sha256 = "1e627dc5b5753d1396e92cb225edaa0f5bb769f17c1669ca90469cf52865a9bb";
};
# sourceRoot = "fonts/ttf";
installPhase = ''
tar -xvf $src
mkdir -p $out/share/fonts/truetype
cp fonts/*.ttf $out/share/fonts/truetype
'';
}

Binary file not shown.