mirror of
https://gitlab.com/TECHNOFAB/nixlets.git
synced 2026-02-02 03:05:09 +01:00
19 lines
330 B
Nix
19 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";
|
||
|
|
};
|
||
|
|
}
|