mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
27 lines
680 B
Nix
27 lines
680 B
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, lib
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "nova-password";
|
|
version = "0.5.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sapcc";
|
|
repo = "nova-password";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-tjjP+LmYaqpzmTk3tgFqZlG1KEeAkfI7RxzSm97jWVU=";
|
|
};
|
|
|
|
vendorHash = "sha256-MwemuOaXGl0eF+lVtMCgbBeJGILmaeEHcbu+xp8Lm70=";
|
|
|
|
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;
|
|
};
|
|
}
|