Skip to content

Commit

Permalink
Nix 2.9.0 -> 2.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rickynils committed Jun 16, 2022
1 parent 0e65ca2 commit db2f1fb
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-10.15]
nix_version:
- 2.9.0
- 2.9.1
- 2.8.1
- 2.7.0
- 2.6.1
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-10.15]
nix_version:
- 2.9.0
- 2.9.1
- 2.8.1
- 2.7.0
- 2.6.1
Expand All @@ -91,7 +91,7 @@ jobs:
- 2.3.7
- 2.2.2
include:
- nix_version: 2.9.0
- nix_version: 2.9.1
nix_conf: experimental-features = nix-command flakes
- nix_version: 2.8.1
nix_conf: experimental-features = nix-command flakes
Expand Down
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs-nix-2_9_0.url = "nixpkgs/d10d2e4fb824eece9b090d77218db7d6e1ad4b61";
nixpkgs-nix-2_9_1.url = "nixpkgs/0e51dce7781574bbe5c99f649ae8bf157c268d76";
nixpkgs-nix-2_8_1.url = "nixpkgs/eb78d30bf48c1064299d96082054bae587582f2e";
nixpkgs-nix-2_7_0.url = "nixpkgs/e3a73aed432da016f57230ac977cf515525e6cc5";
nixpkgs-nix-2_6_1.url = "nixpkgs/a4a3ef1016e6dddda8ebd3bde232ba5102a406e7";
Expand All @@ -26,7 +26,7 @@
outputs = {
self,
flake-utils,
nixpkgs-nix-2_9_0,
nixpkgs-nix-2_9_1,
nixpkgs-nix-2_8_1,
nixpkgs-nix-2_7_0,
nixpkgs-nix-2_6_1,
Expand All @@ -47,14 +47,14 @@

let

inherit (nixpkgs-nix-2_9_0) lib;
inherit (nixpkgs-nix-2_9_1) lib;

preferRemoteBuild = drv: drv.overrideAttrs (_: {
preferLocalBuild = false;
allowSubstitutes = true;
});

pkgs = import nixpkgs-nix-2_9_0 {
pkgs = import nixpkgs-nix-2_9_1 {
inherit system;
overlays = [
(self: super: super.prefer-remote-fetch self super)
Expand All @@ -78,7 +78,7 @@
nixVersions = system: lib.listToAttrs (map (nix: lib.nameValuePair
nix.version nix
) (
[ nixpkgs-nix-2_9_0.legacyPackages.${system}.nix
[ nixpkgs-nix-2_9_1.legacyPackages.${system}.nix
nixpkgs-nix-2_8_1.legacyPackages.${system}.nix
nixpkgs-nix-2_7_0.legacyPackages.${system}.nix
nixpkgs-nix-2_6_1.legacyPackages.${system}.nix
Expand Down

0 comments on commit db2f1fb

Please sign in to comment.