Skip to content

Commit

Permalink
Merge pull request #15 from ArdanaLabs/nixinator-add-shell-nix
Browse files Browse the repository at this point in the history
add a shell.nix to bring in a pinned nixops
  • Loading branch information
nixinator authored Dec 2, 2021
2 parents ce7f39f + 3895812 commit 7e45701
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#nixops broke in unstable for a little bit
#so a handy shell.nix to bring a 21.05 that works
#https://github.com/NixOS/nixpkgs/issues/147034


#with (import (fetchTarball https://github.com/nixos/nixpkgs/archive/nixpkgs-unstable.tar.gz) {});
with (import (fetchTarball https://github.com/NixOS/nixpkgs/archive/refs/tags/21.05.tar.gz) {});
mkShell {
buildInputs = [
nixops
];
}

0 comments on commit 7e45701

Please sign in to comment.