nix-book/source/recipes/nix-shell/shell.nix
Amy de Buitléir eabae3d7c7 temp
2025-09-04 20:21:18 +01:00

11 lines
293 B
Nix

with (import <nixpkgs> {});
let
hello-flake = ( builtins.getFlake
git+https://codeberg.org/mhwombat/hello-flake?ref=main&rev=3aa43dbe7be878dde7b2bdcbe992fe1705da3150
).packages.${builtins.currentSystem}.default;
in
mkShell {
buildInputs = [
hello-flake
];
}