Skip to content

Commit

Permalink
Merge pull request #957 from Lederstrumpf/update-shell.nix
Browse files Browse the repository at this point in the history
update shell.nix
  • Loading branch information
Lederstrumpf authored Aug 11, 2024
2 parents e2a775f + cdde00c commit 48dad68
Showing 1 changed file with 12 additions and 15 deletions.
27 changes: 12 additions & 15 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
let
pkgs = import
(builtins.fetchGit {
name = "nixos-release-22.05";
url = "https://github.com/nixos/nixpkgs/";
ref = "refs/heads/release-22.05";
rev = "6ddd2d34e3701339eb01bbf1259b258adcc6156c";
})
{
overlays = [
(import (builtins.fetchTarball
"https://github.com/oxalica/rust-overlay/archive/master.tar.gz"))
];
};
in
pkgs.mkShell {
pkgs = import (builtins.fetchGit {
name = "nixos-release-24.05";
url = "https://github.com/nixos/nixpkgs/";
ref = "refs/heads/release-24.05";
rev = "5a83f6f984f387d47373f6f0c43b97a64e7755c0";
}) {
overlays = [
(import (builtins.fetchTarball
"https://github.com/oxalica/rust-overlay/archive/master.tar.gz"))
];
};
in pkgs.mkShell {
buildInputs = with pkgs; [
cargo
cargo-watch
Expand Down

0 comments on commit 48dad68

Please sign in to comment.