mirror of
https://gitlab.com/TECHNOFAB/nixlets.git
synced 2026-02-02 11:15:08 +01:00
18 lines
330 B
Nix
18 lines
330 B
Nix
{
|
|
inputs,
|
|
cell,
|
|
...
|
|
}: let
|
|
inherit (inputs) pkgs nixlet-lib;
|
|
inherit (cell) nixlets;
|
|
in {
|
|
upload = {
|
|
type = "app";
|
|
program =
|
|
(pkgs.callPackage nixlet-lib.uploadNixletsToGitlab {
|
|
projectId = "55602785";
|
|
nixlets = builtins.attrValues nixlets;
|
|
})
|
|
+ "/bin/nixlets-upload";
|
|
};
|
|
}
|