flake/pkgs/default.nix

21 lines
562 B
Nix
Raw Normal View History

2024-03-02 12:50:51 +00:00
# NOTE: 301: All packages are migrated to `github:Guanran928/nur-packages`,
# only keeping some packages that only fits for personal use.
2024-06-21 03:20:42 +00:00
pkgs: let
2024-07-11 15:50:43 +00:00
inherit (pkgs) lib callPackage;
2024-06-21 03:20:42 +00:00
in {
2024-07-11 15:50:43 +00:00
# https://github.com/NixOS/nixpkgs/pull/308720
pixivfe = callPackage ./pixivfe.nix {};
2024-07-21 06:49:16 +00:00
background = callPackage ./background.nix {};
2024-07-11 15:50:43 +00:00
scripts = lib.makeScope pkgs.newScope (self: let
inherit (self) callPackage;
in {
2024-03-02 12:50:51 +00:00
# util
2024-07-11 15:50:43 +00:00
makeScript = callPackage ./scripts/makeScript.nix {};
2024-03-02 12:50:51 +00:00
# scripts
2024-07-11 15:50:43 +00:00
lofi = callPackage ./scripts/lofi.nix {};
2024-06-21 03:20:42 +00:00
});
2023-12-13 05:54:34 +00:00
}