evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / no / nova-password / package.nix
blob225366dfacfb7444aa75562864e2834141f32d76
1 { buildGoModule
2 , fetchFromGitHub
3 , lib
4 }:
6 buildGoModule rec {
7   pname = "nova-password";
8   version = "0.5.7";
10   src = fetchFromGitHub {
11     owner = "sapcc";
12     repo = "nova-password";
13     rev = "refs/tags/v${version}";
14     hash = "sha256-tjjP+LmYaqpzmTk3tgFqZlG1KEeAkfI7RxzSm97jWVU=";
15   };
17   vendorHash = "sha256-MwemuOaXGl0eF+lVtMCgbBeJGILmaeEHcbu+xp8Lm70=";
19   meta = {
20     description = "Decrypt the admin password generated for the VM in OpenStack";
21     homepage = "https://github.com/sapcc/nova-password";
22     license = lib.licenses.asl20;
23     mainProgram = "nova-password";
24     maintainers = with lib.maintainers; [ vinetos ];
25     platforms = lib.platforms.all;
26   };