nixpkgs/pkgs/by-name/no/nova-password/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
680 B
Nix
Raw Normal View History

2024-07-05 07:34:55 +00:00
{ buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "nova-password";
2024-07-17 01:33:30 +00:00
version = "0.5.7";
2024-07-05 07:34:55 +00:00
src = fetchFromGitHub {
owner = "sapcc";
repo = "nova-password";
rev = "refs/tags/v${version}";
2024-07-17 01:33:30 +00:00
hash = "sha256-tjjP+LmYaqpzmTk3tgFqZlG1KEeAkfI7RxzSm97jWVU=";
2024-07-05 07:34:55 +00:00
};
2024-07-17 01:33:30 +00:00
vendorHash = "sha256-MwemuOaXGl0eF+lVtMCgbBeJGILmaeEHcbu+xp8Lm70=";
2024-07-05 07:34:55 +00:00
meta = {
description = "Decrypt the admin password generated for the VM in OpenStack";
homepage = "https://github.com/sapcc/nova-password";
license = lib.licenses.asl20;
mainProgram = "nova-password";
maintainers = with lib.maintainers; [ vinetos ];
platforms = lib.platforms.all;
};
}