nix/pkgs/default.nix

13 lines
475 B
Nix
Raw Normal View History

2023-10-03 11:52:44 -05:00
# Custom packages, that can be defined similarly to ones from nixpkgs
# You can build them using 'nix build .#example'
2024-02-02 15:28:57 -06:00
{pkgs, ...}: rec {
2024-02-02 17:55:55 -06:00
iosevka-lyteterm = pkgs.callPackage ./iosevka-lyteterm.nix {inherit (pkgs) iosevka;};
iosevka-lyteterm-min = pkgs.callPackage ./iosevka-lyteterm-min.nix {
2024-02-02 15:28:57 -06:00
inherit pkgs;
inherit (pkgs) brotli;
2024-02-02 17:55:55 -06:00
inherit iosevka-lyteterm;
2024-02-02 15:28:57 -06:00
fonttools = pkgs.python311Packages.fonttools;
};
2023-10-03 11:52:44 -05:00
# example = pkgs.callPackage ./example { };
}