project-plus: remove sd and launcher from derivation
This commit is contained in:
parent
5aae9cdf5d
commit
4191eb50bf
2 changed files with 12 additions and 13 deletions
|
|
@ -6,25 +6,26 @@
|
|||
}: {
|
||||
perSystem = {pkgs, ...}: let
|
||||
inherit (pkgs) callPackage qt6Packages;
|
||||
|
||||
projectPlus = {
|
||||
fpp-config = callPackage ./project-plus/fpp-config.nix {};
|
||||
fpp-launcher = callPackage ./project-plus/fpp-launcher.nix {};
|
||||
fpp-sd = callPackage ./project-plus/fpp-sd.nix {};
|
||||
package = qt6Packages.callPackage ./project-plus {
|
||||
inherit (projectPlus) fpp-config;
|
||||
};
|
||||
};
|
||||
in {
|
||||
packages = {
|
||||
repopack = callPackage ./repopack {};
|
||||
live-buds-cli = callPackage ./live-buds-cli {};
|
||||
website = callPackage ./website {};
|
||||
caddy-with-cloudflare = callPackage ./caddy-with-cloudflare {};
|
||||
|
||||
wii-u-gc-adapter = callPackage ./wii-u-gc-adapter {};
|
||||
|
||||
ook-vim = callPackage ./ook-vim {inherit inputs pkgs lib hozen;};
|
||||
|
||||
project-plus = let
|
||||
fpp-config = callPackage ./project-plus/fpp-config.nix {};
|
||||
fpp-launcher = callPackage ./project-plus/fpp-launcher.nix {};
|
||||
fpp-sd = callPackage ./project-plus/fpp-sd.nix {};
|
||||
in
|
||||
qt6Packages.callPackage ./project-plus {
|
||||
inherit fpp-launcher fpp-sd fpp-config;
|
||||
};
|
||||
inherit (projectPlus) fpp-config fpp-launcher fpp-sd;
|
||||
project-plus = projectPlus.package;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue