1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 10:41:16 +02:00

Remove dead code from nix-daemon-compat-tests packaging

We're not testing against these versions anymore.
If we bring that back (I would support that), we could do so in a clean
way, by making sure that the packaging we test against has a proper version
attribute.
This commit is contained in:
Robert Hensing 2024-12-09 17:35:57 +01:00
parent 6d86839a02
commit 62d3957268

View file

@ -19,11 +19,7 @@ let
testNixVersions = pkgs: daemon:
pkgs.nixComponents.nix-functional-tests.override {
pname = "nix-daemon-compat-tests";
version =
lib.optionalString
(lib.versionAtLeast daemon.version "2.4pre20211005" &&
lib.versionAtLeast pkgs.nix.version "2.4pre20211005")
"${pkgs.nix.version}-with-daemon-${daemon.version}";
version = "${pkgs.nix.version}-with-daemon-${daemon.version}";
test-daemon = daemon;
};