[NixOS] Build runc from source

This commit is contained in:
2024-12-30 22:55:46 -07:00
parent 2d4c1df31f
commit 5b3915ad27
4 changed files with 18 additions and 1 deletions

10
nixos/runc-overlay.nix Normal file
View File

@@ -0,0 +1,10 @@
final: prev: {
runc = prev.runc.overrideAttrs (_: {
src = prev.fetchFromGitHub {
repo = "runc";
owner = "colonelpanic8";
rev = "4b809881415e99247d8dea2eda862491dbc9acd2";
sha256 = "sha256-XOslGNu+ix52938SnnhmWKUaZaTQx9+/o74tnAjmo3I=";
};
});
}