Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / limesctl / default.nix
blob4228d5eec0abf1f2a78aa034c65e476dacb31013
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "limesctl";
5   version = "3.3.1";
7   src = fetchFromGitHub {
8     owner = "sapcc";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-osXwVZuMB9cMj0tEMBOQ8hrKWAmfXui4ELoi0dm9yB4=";
12   };
14   vendorHash = null;
16   subPackages = [ "." ];
18   meta = with lib; {
19     description = "CLI for Limes";
20     homepage = "https://github.com/sapcc/limesctl";
21     license = licenses.asl20;
22     maintainers = with maintainers; [ SuperSandro2000 ];
23   };