mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
42 lines
894 B
Nix
42 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";
|
|
};
|
|
}
|