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
569 B
Nix
Raw Normal View History

2021-09-29 14:45:26 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "limesctl";
2023-03-05 09:15:37 +00:00
version = "3.2.0";
2021-09-29 14:45:26 +00:00
src = fetchFromGitHub {
owner = "sapcc";
repo = pname;
rev = "v${version}";
2023-03-05 09:15:37 +00:00
sha256 = "sha256-/9focZIm6tVnkAGIZYTJ9uewXKLv/x74LEMUZbXInb0=";
2021-09-29 14:45:26 +00:00
};
2023-03-05 09:15:37 +00:00
vendorHash = "sha256-Zc8X29tsSsM/tkSYvplF1LxBS76eSs+cm5Li3OE/3o8=";
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 ];
};
}