refactor(flake): move some code out of flake.in.nix

This commit is contained in:
matt1432 2024-07-21 17:12:26 -04:00
parent b3b65c1bd9
commit c701e335d1
39 changed files with 54 additions and 42 deletions
packages

29
packages/default.nix Normal file
View file

@ -0,0 +1,29 @@
{
inputs,
mkVersion,
pkgs,
...
}: {
coloryou = pkgs.callPackage ./coloryou {};
gpu-screen-recorder = pkgs.callPackage ./gpu-screen-recorder {
inherit (inputs) gpu-screen-recorder-src;
};
pam-fprint-grosshack = pkgs.callPackage ./pam-fprint-grosshack {
inherit (inputs) pam-fprint-grosshack-src;
};
pokemon-colorscripts = pkgs.callPackage ./pokemon-colorscripts {
inherit (inputs) pokemon-colorscripts-src;
inherit mkVersion;
};
repl = pkgs.callPackage ./repl {};
trash-d = pkgs.callPackage ./trash-d {
inherit (inputs) trash-d-src;
};
yuzu = pkgs.callPackage ./yuzu {};
}