nix-dotfiles/pkgs/fhwa/flake.nix

14 lines
293 B
Nix
Raw Normal View History

2024-05-06 17:53:58 -04:00
{
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;
};
}