Skip to content

Commit

Permalink
remove ancient nixpkgs 23.11 input test
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Dec 3, 2024
1 parent 9526cbb commit e3190e9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 30 deletions.
18 changes: 0 additions & 18 deletions flake.lock

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

1 change: 0 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small";

inputs.nixpkgs-regression.url = "github:NixOS/nixpkgs/215d4d0fd80ca5163643b03a33fde804a29cc1e2";
inputs.nixpkgs-23-11.url = "github:NixOS/nixpkgs/a62e6edd6d5e1fa0329b8653c801147986f8d446";
inputs.flake-compat = { url = "github:edolstra/flake-compat"; flake = false; };

# dev tooling
Expand Down
13 changes: 2 additions & 11 deletions tests/nixos/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,9 @@ let
nix.package = lib.mkForce pkgs.nixVersions.nix_2_3;
};

otherNixes.nix_2_13.setNixPackage = { lib, pkgs, ... }: {
otherNixes.nix_2_24.setNixPackage = { lib, pkgs, ... }: {
imports = [ checkOverrideNixVersion ];
nix.package = lib.mkForce (
self.inputs.nixpkgs-23-11.legacyPackages.${pkgs.stdenv.hostPlatform.system}.nixVersions.nix_2_13.overrideAttrs (o: {
meta = o.meta // { knownVulnerabilities = []; };
})
);
};

otherNixes.nix_2_18.setNixPackage = { lib, pkgs, ... }: {
imports = [ checkOverrideNixVersion ];
nix.package = lib.mkForce pkgs.nixVersions.nix_2_18;
nix.package = lib.mkForce pkgs.nixVersions.nix_2_24;
};

in
Expand Down

0 comments on commit e3190e9

Please sign in to comment.