18 lines
355 B
Nix
18 lines
355 B
Nix
{ callPackage, inputs, genAttrs, system }:
|
|
let
|
|
buildPkg = name:
|
|
callPackage
|
|
(./. + "/${name}.nix")
|
|
{ "${name}-src" = inputs."${name}-src"; };
|
|
pkgs = [
|
|
"dark-mode-notify"
|
|
"luar"
|
|
"smarttab-kak"
|
|
"kakoune-sudo-write"
|
|
"yubiswitch"
|
|
];
|
|
in
|
|
genAttrs pkgs buildPkg // {
|
|
helix = inputs.helix.packages.${system}.default;
|
|
}
|