flake: Delete Apps

Nix Flake Apps are used by `nix run`, but none of the defined apps are
useful to run "one off" anyways.
This commit is contained in:
Lorenz Leutgeb 2025-06-24 23:16:50 +02:00 committed by Fintan Halpenny
parent 5a840983a8
commit db3b3b0548
1 changed files with 0 additions and 24 deletions

View File

@ -248,30 +248,6 @@
}; };
}; };
apps.default = flake-utils.lib.mkApp {
drv = self.packages.${system}.radicle;
};
apps.radicle-full = flake-utils.lib.mkApp {
name = "rad";
drv = self.packages.${system}.radicle-full;
};
apps.rad = flake-utils.lib.mkApp {
name = "rad";
drv = self.packages.${system}.radicle-cli;
};
apps.git-remote-rad = flake-utils.lib.mkApp {
name = "git-remote-rad";
drv = self.packages.${system}.radicle-remote-helper;
};
apps.radicle-node = flake-utils.lib.mkApp {
name = "radicle-node";
drv = self.packages.${system}.radicle-node;
};
devShells.default = rustup.craneLib.devShell { devShells.default = rustup.craneLib.devShell {
inherit (self.checks.${system}.pre-commit-check) shellHook; inherit (self.checks.${system}.pre-commit-check) shellHook;
buildInputs = self.checks.${system}.pre-commit-check.enabledPackages; buildInputs = self.checks.${system}.pre-commit-check.enabledPackages;