37 lines
875 B
Nix
37 lines
875 B
Nix
|
{ lib
|
||
|
, buildGoModule
|
||
|
, fetchFromGitHub
|
||
|
, stdenv
|
||
|
}:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
pname = "kraftkit";
|
||
|
version = "0.6.4";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "unikraft";
|
||
|
repo = "kraftkit";
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-+aZrJqxgPGIoWEW4PZj6Nib7Z49HitxqMbeoyIe14iM=";
|
||
|
};
|
||
|
|
||
|
vendorHash = "sha256-4V7GTqCDSHybuwIrnmO1MJ+DwMpkKOdA7UC72YJqStM=";
|
||
|
|
||
|
ldflags = [
|
||
|
"-s"
|
||
|
"-w"
|
||
|
"-X kraftkit.sh/internal/version.version=${version}"
|
||
|
];
|
||
|
|
||
|
subPackages = [ "cmd/kraft" ];
|
||
|
|
||
|
meta = {
|
||
|
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 ];
|
||
|
mainProgram = "kraft";
|
||
|
broken = stdenv.isDarwin; # > machine/platform/iterator_v1alpha1.go:32:34: undefined: hostSupportedStrategies
|
||
|
};
|
||
|
}
|