nixpkgs/pkgs/applications/misc/limesctl/default.nix

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

25 lines
571 B
Nix
Raw Normal View History

2021-09-29 14:45:26 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "limesctl";
2022-10-25 19:07:37 +00:00
version = "3.0.3";
2021-09-29 14:45:26 +00:00
src = fetchFromGitHub {
owner = "sapcc";
repo = pname;
rev = "v${version}";
2022-10-25 19:07:37 +00:00
sha256 = "sha256-2eB+VpMrhzs0Dg+X1sf7TVW7uK/URETUuWO82jQl57k=";
2021-09-29 14:45:26 +00:00
};
2022-10-25 19:07:37 +00:00
vendorSha256 = "sha256-VKxwdlyQUYmxubl4Y2uKvekuHd62GcGaoPeUBC+lcJU=";
2021-09-29 14:45:26 +00:00
subPackages = [ "." ];
meta = with lib; {
description = "CLI for Limes";
homepage = "https://github.com/sapcc/limesctl";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}