mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-11 18:32:23 +08:00
devenv: upgrade nix version for 1.8.2
(cherry picked from commit 01d8accd9a)
This commit is contained in:
committed by
github-actions[bot]
parent
7bc8d63262
commit
3bb594ad62
@@ -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