nixpkgs/pkgs/tools/misc/mmctl/default.nix

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

34 lines
647 B
Nix
Raw Normal View History

2022-06-21 01:10:26 +01:00
{ lib
, fetchFromGitHub
, buildGoModule
}:
2021-12-22 11:12:27 +00:00
buildGoModule rec {
pname = "mmctl";
2022-06-24 16:27:24 +01:00
version = "7.0.1";
2021-12-22 11:12:27 +00:00
src = fetchFromGitHub {
owner = "mattermost";
repo = "mmctl";
rev = "v${version}";
2022-06-24 16:27:24 +01:00
sha256 = "sha256-xNj8aM3hpcvxwXCdFCfkXDBagIdCjcjWLGNp43KsV10=";
2021-12-22 11:12:27 +00:00
};
vendorSha256 = null;
checkPhase = "make test";
2022-06-21 01:10:26 +01:00
ldflags = [
"-s"
"-w"
"-X github.com/mattermost/mmctl/v6/commands.Version=${version}"
];
2021-12-22 11:12:27 +00:00
meta = with lib; {
description = "A remote CLI tool for Mattermost";
homepage = "https://github.com/mattermost/mmctl";
license = licenses.asl20;
maintainers = with maintainers; [ ppom ];
};
}