# Standalone build for the published repo. Generated by # platform/tangled/publish/gen-project.nu; edit that template, not this file. # # The devshell and its hooks, the formatter and the nixpkgs this resolves # against are shared with every other repo published from the monorepo, and # arrive through nix-workspace. The build itself is this repo's own # default.nix, the same file the monorepo builds it with, so there is nothing # about it to restate here. { description = "A GNU patch-compatible diff application tool written in Rust"; inputs = { workspace.url = "git+https://tangled.org/overby.me/nix-workspace"; # nix-lib carries buildCargoProject, which every project builds # with: one derivation per crate rather than one for the whole graph. nix-lib = { url = "git+https://tangled.org/overby.me/nix-lib"; inputs.workspace.follows = "workspace"; }; }; outputs = inputs: inputs.workspace { inherit inputs; outputDirs = [./.]; }; }