mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
512e8afdb9
format (will squash)
41 lines
894 B
Nix
41 lines
894 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, nix-update-script
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "kraftkit";
|
|
version = "0.8.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "unikraft";
|
|
repo = "kraftkit";
|
|
rev = "v${version}";
|
|
hash = "sha256-lBvDKO2+MTSrmQM7szg5yulUi5OZKv7qKNQ75PIZgDo=";
|
|
};
|
|
|
|
vendorHash = "sha256-JSE4k/JgWvYCfTUuf2pj4XCcdJ9+j7fY9aAiCipapIk=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X kraftkit.sh/internal/version.version=${version}"
|
|
];
|
|
|
|
subPackages = [ "cmd/kraft" ];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script {
|
|
extraArgs = [ "--version-regex" "^v([0-9.]+)" ];
|
|
};
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|