kraft: 0.8.6 -> 0.9.4, add cloudripper as maintainer (#359088)

This commit is contained in:
Aleksana
2024-11-27 22:58:45 +08:00
committed by GitHub
+18 -4
View File
@@ -1,21 +1,35 @@
{ lib
, stdenv
, buildGoModule
, fetchFromGitHub
, pkg-config
, btrfs-progs
, gpgme
, nix-update-script
}:
buildGoModule rec {
pname = "kraftkit";
version = "0.8.6";
version = "0.9.4";
src = fetchFromGitHub {
owner = "unikraft";
repo = "kraftkit";
rev = "v${version}";
hash = "sha256-lBvDKO2+MTSrmQM7szg5yulUi5OZKv7qKNQ75PIZgDo=";
hash = "sha256-4+3yMx/Vf4aZKC5GRhnAeH4oaJ0Rbz8oXptMtPV+5tA=";
};
vendorHash = "sha256-JSE4k/JgWvYCfTUuf2pj4XCcdJ9+j7fY9aAiCipapIk=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
gpgme
] ++ lib.optionals stdenv.hostPlatform.isLinux [
btrfs-progs
];
vendorHash = "sha256-uyoIlNhgL684f+3+I4CFc+iuMRdI5WAUr7dWr0Bt6bA=";
ldflags = [
"-s"
@@ -35,7 +49,7 @@ buildGoModule rec {
description = "Build and use highly customized and ultra-lightweight unikernel VMs";
homepage = "https://github.com/unikraft/kraftkit";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ dit7ya ];
maintainers = with lib.maintainers; [ dit7ya cloudripper ];
mainProgram = "kraft";
};
}