mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 22:45:08 +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.
41 lines
965 B
Nix
41 lines
965 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "onmetal-image";
|
|
version = "0.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "onmetal";
|
|
repo = "onmetal-image";
|
|
rev = "v${version}";
|
|
hash = "sha256-KvOBvAIE9V2bj5prdcc8G5ifHsvybHBCYWrI4fWtdvE=";
|
|
};
|
|
|
|
vendorHash = "sha256-aCL8hLcBnIs5BJM7opIwcOLvOS3uL9mYXs1vOAMlX/M=";
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
postInstall = ''
|
|
mv $out/bin/cmd $out/bin/onmetal-image
|
|
|
|
installShellCompletion --cmd onmetal-image \
|
|
--bash <($out/bin/onmetal-image completion bash) \
|
|
--fish <($out/bin/onmetal-image completion fish) \
|
|
--zsh <($out/bin/onmetal-image completion zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Onmetal OCI Image Specification, Library and Tooling";
|
|
homepage = "https://github.com/onmetal/onmetal-image";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
mainProgram = "onmetal-image";
|
|
};
|
|
}
|