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-11-22 14:26:52 +00:00
version = "3.1.1";
2021-09-29 14:45:26 +00:00
src = fetchFromGitHub {
owner = "sapcc";
repo = pname;
rev = "v${version}";
2022-11-22 14:26:52 +00:00
sha256 = "sha256-/CYZMuW5/YoZszTOaQZLRhJdZAGGMY+s7vMK01hyMvg=";
2021-09-29 14:45:26 +00:00
};
2022-11-22 14:26:52 +00:00
vendorSha256 = "sha256-BwhbvCUOOp5ZeY/22kIZ58e+iPH0pVgiNOyoD6O2zPo=";
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 ];
};
}