⬆️ bump to nix 22.11

This commit is contained in:
James Walker 2022-12-03 22:49:32 -05:00
parent b2e5fa81f1
commit b79912b352
Signed by: walkah
GPG Key ID: 3C127179D6086E93
2 changed files with 9 additions and 9 deletions

View File

@ -20,11 +20,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1667610399, "lastModified": 1669597967,
"narHash": "sha256-XZd0f4ZWAY0QOoUSdiNWj/eFiKb4B9CJPtl9uO9SYY4=", "narHash": "sha256-R+2NaDkXsYkOpFOhmVR8jBZ77Pq55Z6ilaqwFLLn000=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "1dd8696f96db47156e1424a49578fe7dd4ce99a4", "rev": "be9e3762e719211368d186f547f847737baad720",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -34,16 +34,16 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1667673681, "lastModified": 1669909918,
"narHash": "sha256-dtDwDnu09B8jugyf3uIdfs7oUGqFWWwScZ1E2BZh0+o=", "narHash": "sha256-oPW5SoN/5Wd2kGj/djK4WjDn8vleZu+k3RdtDauE64M=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "ab5be3536aa633d6b99c1eb853bf25cb6d772858", "rev": "0b819d1aafef96f494c14f9a0bb22d0e3132926f",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nixos", "owner": "nixos",
"ref": "release-22.05", "ref": "release-22.11",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }

View File

@ -2,7 +2,7 @@
description = "IPFS deploy tool"; description = "IPFS deploy tool";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/release-22.05"; nixpkgs.url = "github:nixos/nixpkgs/release-22.11";
utils.url = "github:numtide/flake-utils"; utils.url = "github:numtide/flake-utils";
naersk.url = "github:nix-community/naersk"; naersk.url = "github:nix-community/naersk";
}; };
@ -30,7 +30,7 @@
# `nix develop` # `nix develop`
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
name = "marvin"; name = "marvin";
nativeBuildInputs = with pkgs; [ libiconv rustup ]; nativeBuildInputs = with pkgs; [ libiconv rustup rust-analyzer ];
}; };
}); });
} }