various
This commit is contained in:
parent
0f6a49366e
commit
024ea1168a
23 changed files with 485 additions and 101 deletions
11
flake.nix
11
flake.nix
|
@ -48,7 +48,7 @@
|
|||
devenv.root = let
|
||||
devenvRootFileContent = builtins.readFile inputs.devenv-root.outPath;
|
||||
in
|
||||
pkgs.lib.mkIf (devenvRootFileContent != "") devenvRootFileContent;
|
||||
self.lib.mkIf (devenvRootFileContent != "") devenvRootFileContent;
|
||||
|
||||
name = "puter";
|
||||
|
||||
|
@ -61,7 +61,14 @@
|
|||
];
|
||||
};
|
||||
|
||||
packages.disk = pkgs.callPackage ./disk {};
|
||||
packages =
|
||||
self.lib.genAttrs [
|
||||
"puter"
|
||||
"disk"
|
||||
"musicomp"
|
||||
] (
|
||||
name: pkgs.callPackage ./packages/${name} {}
|
||||
);
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue