13 lines
352 B
Nix
13 lines
352 B
Nix
{
|
|
description = "rebox: remaking busybox with rust";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
import-tree.url = "github:vic/import-tree";
|
|
};
|
|
|
|
outputs = inputs:
|
|
inputs.flake-parts.lib.mkFlake {inherit inputs;}
|
|
(inputs.import-tree ./packages/nix);
|
|
}
|