File tree Expand file tree Collapse file tree 1 file changed +18
-4
lines changed Expand file tree Collapse file tree 1 file changed +18
-4
lines changed Original file line number Diff line number Diff line change 11{ lib
2+ , stdenv
23, buildGoModule
34, fetchFromGitHub
5+ , pkg-config
6+ , btrfs-progs
7+ , gpgme
48, nix-update-script
59} :
610
711buildGoModule rec {
812 pname = "kraftkit" ;
9- version = "0.8.6 " ;
13+ version = "0.9.4 " ;
1014
1115 src = fetchFromGitHub {
1216 owner = "unikraft" ;
1317 repo = "kraftkit" ;
1418 rev = "v${ version } " ;
15- hash = "sha256-lBvDKO2+MTSrmQM7szg5yulUi5OZKv7qKNQ75PIZgDo =" ;
19+ hash = "sha256-4+3yMx/Vf4aZKC5GRhnAeH4oaJ0Rbz8oXptMtPV+5tA =" ;
1620 } ;
1721
18- vendorHash = "sha256-JSE4k/JgWvYCfTUuf2pj4XCcdJ9+j7fY9aAiCipapIk=" ;
22+ nativeBuildInputs = [
23+ pkg-config
24+ ] ;
25+
26+ buildInputs = [
27+ gpgme
28+ ] ++ lib . optionals stdenv . hostPlatform . isLinux [
29+ btrfs-progs
30+ ] ;
31+
32+ vendorHash = "sha256-uyoIlNhgL684f+3+I4CFc+iuMRdI5WAUr7dWr0Bt6bA=" ;
1933
2034 ldflags = [
2135 "-s"
@@ -35,7 +49,7 @@ buildGoModule rec {
3549 description = "Build and use highly customized and ultra-lightweight unikernel VMs" ;
3650 homepage = "https://github.com/unikraft/kraftkit" ;
3751 license = lib . licenses . bsd3 ;
38- maintainers = with lib . maintainers ; [ dit7ya ] ;
52+ maintainers = with lib . maintainers ; [ dit7ya cloudripper ] ;
3953 mainProgram = "kraft" ;
4054 } ;
4155}
You can’t perform that action at this time.
0 commit comments