diff --git a/.tangled/workflows/ci.yml b/.tangled/workflows/ci.yml index 0d94682..b30758c 100644 --- a/.tangled/workflows/ci.yml +++ b/.tangled/workflows/ci.yml @@ -1,4 +1,4 @@ -# CI for the published repo. Generated by platform/tangled/publish/gen-standalone.nu. +# CI for the published repo. Generated by platform/tangled/publish/gen-project.nu. # # Inert inside the monorepo: Tangled reads .tangled/workflows from a repo's # root, and here this sits under rust//. It becomes the published diff --git a/README.md b/README.md index c4ce79c..c2f76b8 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Oxidized Diffutils - + > Part of the [overby.me monorepo](https://tangled.org/overby.me/overby.me), where this lives in > [`safety/oxidized/diffutils`](https://tangled.org/overby.me/overby.me/tree/main/safety/oxidized/diffutils) and where all development happens. > diff --git a/flake.lock b/flake.lock index 0b6e152..fc1852b 100644 --- a/flake.lock +++ b/flake.lock @@ -40,7 +40,7 @@ "inputs": { "flake-compat": "flake-compat", "nixpkgs": [ - "standalone", + "project", "nixpkgs" ] }, @@ -74,14 +74,7 @@ "type": "github" } }, - "root": { - "inputs": { - "flakelight": "flakelight", - "nixpkgs": "nixpkgs", - "standalone": "standalone" - } - }, - "standalone": { + "project": { "inputs": { "flakelight": [ "flakelight" @@ -92,18 +85,25 @@ ] }, "locked": { - "lastModified": 1786867641, - "narHash": "sha256-8wagkd+qYjRjcF700W2Ee3BxN7QNR5+xuejwB77+3EI=", + "lastModified": 1786879603, + "narHash": "sha256-KrAL+GjyJWDMHS+nekxm0wFDMJGRnpjoagS1UoxVp+k=", "owner": "overby-me", - "repo": "nix-standalone", - "rev": "94df90be51417a4fea9f572ddf0c43ffcb1525e6", + "repo": "nix-project", + "rev": "54a664f56f65c72d5b23bd470236281c262ef232", "type": "github" }, "original": { "owner": "overby-me", - "repo": "nix-standalone", + "repo": "nix-project", "type": "github" } + }, + "root": { + "inputs": { + "flakelight": "flakelight", + "nixpkgs": "nixpkgs", + "project": "project" + } } }, "root": "root", diff --git a/flake.nix b/flake.nix index c107cf9..e3131f5 100644 --- a/flake.nix +++ b/flake.nix @@ -1,8 +1,8 @@ # Standalone build for the published repo. Generated by -# platform/tangled/publish/gen-standalone.nu; edit that template, not this file. +# platform/tangled/publish/gen-project.nu; edit that template, not this file. # # The build, the devshell and its hooks, and the formatter are shared with -# every other repo published from the monorepo, and live in the standalone +# every other repo published from the monorepo, and live in the nix-project # module. Only what is particular to this project is stated here. { description = "A GNU diffutils-compatible suite of file comparison tools written in Rust"; @@ -18,8 +18,8 @@ inputs.nixpkgs.follows = "nixpkgs"; }; - standalone = { - url = "github:overby-me/nix-standalone"; + project = { + url = "github:overby-me/nix-project"; inputs.nixpkgs.follows = "nixpkgs"; inputs.flakelight.follows = "flakelight"; }; @@ -28,11 +28,11 @@ outputs = inputs: inputs.flakelight ./. { inherit inputs; - imports = [inputs.standalone.flakelightModules.default]; + imports = [inputs.project.flakelightModules.default]; description = "A GNU diffutils-compatible suite of file comparison tools written in Rust"; - standalone = { + project = { name = "oxidized-diffutils"; root = ./.; };