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

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

26 lines
548 B
Nix
Raw Normal View History

2021-09-29 14:45:26 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "limesctl";
2024-01-10 05:00:16 +00:00
version = "3.3.2";
2021-09-29 14:45:26 +00:00
src = fetchFromGitHub {
owner = "sapcc";
repo = pname;
rev = "v${version}";
2024-01-10 05:00:16 +00:00
hash = "sha256-UYQe2C50tB1uc5ij8oh+RBaFg9UYWwPmJ77LCJ11Ml4=";
2021-09-29 14:45:26 +00:00
};
2023-10-01 10:39:11 +00:00
vendorHash = null;
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 ];
2024-02-11 02:19:15 +00:00
mainProgram = "limesctl";
2021-09-29 14:45:26 +00:00
};
}