Skip to content

Commit 71fdf86

Browse files
committed
nix shell recipe
1 parent 13822a3 commit 71fdf86

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

data-raw/shell.nix

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Install the nix package manager if it is not available: https://nixos.org/download/#download-nix
2+
# This nix shell definition lets you run 'cue' version 0.8.2 under go version go1.22.8 in a nix shell.
3+
# Start it by running 'nix-shell' in this folder.
4+
5+
let
6+
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
7+
pkgs = import nixpkgs { config = {}; overlays = []; };
8+
in
9+
10+
pkgs.mkShellNoCC {
11+
packages = with pkgs; [
12+
cue
13+
];
14+
}

0 commit comments

Comments
 (0)