switch from git submodules to flake inputs
This commit is contained in:
parent
6e8e4b9fda
commit
57b8ae3424
9 changed files with 86 additions and 35 deletions
|
|
@ -1,19 +1,12 @@
|
|||
{ libkrunfw, fetchurl, variant ? null, ... }:
|
||||
{ libkrunfw, libkrunfw-src, fetchurl, variant ? null, ... }:
|
||||
|
||||
(libkrunfw.override {
|
||||
inherit variant;
|
||||
}).overrideAttrs (old: {
|
||||
version = "5.0.0";
|
||||
src = ../../libkrunfw;
|
||||
# src = fetchFromGitHub {
|
||||
# owner = "containers";
|
||||
# repo = "libkrunfw";
|
||||
# tag = "v4.10.0";
|
||||
# hash = "sha256-mq2gw0+xL6qUZE/fk0vLT3PEpzPV8p+iwRFJHXVOMnk=";
|
||||
# };
|
||||
src = libkrunfw-src;
|
||||
kernelSrc = fetchurl {
|
||||
url = "mirror://kernel/linux/kernel/v6.x/linux-6.12.44.tar.xz";
|
||||
hash = "sha256-tlAhDtMCeyJJadFIqjd0Uqmq065/KFGr7dMa3+8Wva4=";
|
||||
};
|
||||
# buildInputs = old.buildInputs;
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue