mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-12 02:40:31 +08:00
devenv: upgrade nix version for 1.8.2
This commit is contained in:
@@ -15,22 +15,24 @@
|
||||
}:
|
||||
|
||||
let
|
||||
version = "1.8.2";
|
||||
devenvNixVersion = "2.30.4";
|
||||
|
||||
devenv_nix =
|
||||
(nixVersions.git.overrideSource (fetchFromGitHub {
|
||||
owner = "cachix";
|
||||
repo = "nix";
|
||||
rev = "031c3cf42d2e9391eee373507d8c12e0f9606779";
|
||||
hash = "sha256-dOi/M6yNeuJlj88exI+7k154z+hAhFcuB8tZktiW7rg=";
|
||||
rev = "devenv-${devenvNixVersion}";
|
||||
hash = "sha256-3+GHIYGg4U9XKUN4rg473frIVNn8YD06bjwxKS1IPrU=";
|
||||
})).overrideAttrs
|
||||
(old: {
|
||||
version = "2.30-devenv";
|
||||
pname = "devenv-nix";
|
||||
version = devenvNixVersion;
|
||||
doCheck = false;
|
||||
doInstallCheck = false;
|
||||
# do override src, but the Nix way so the warning is unaware of it
|
||||
__intentionallyOverridingVersion = true;
|
||||
});
|
||||
|
||||
version = "1.8.2";
|
||||
in
|
||||
rustPlatform.buildRustPackage {
|
||||
pname = "devenv";
|
||||
|
||||
Reference in New Issue
Block a user