Add sys-devices system feature

This commit is contained in:
Aleix Boné 2025-10-02 17:32:11 +02:00
parent e989e7950e
commit 74ce217cf9
No known key found for this signature in database

View File

@ -5,6 +5,8 @@ let
nodes = <nodes>;
nanos6 = <nanos6>;
requiredSystemFeatures = [ "sys-devices" ];
getVersion = x: toString (x.shortRev or x.dirtyShortRev or x.lastModified or "master");
pkgs = (
@ -16,6 +18,7 @@ let
version = getVersion nosv;
doCheck = true;
inherit requiredSystemFeatures;
});
ovni = prev.ovni.overrideAttrs (old: {
@ -37,6 +40,7 @@ let
version = getVersion nodes;
doCheck = true;
inherit requiredSystemFeatures;
});
})
];