Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / hostess / default.nix
blob7bf78c403318c68cd16668ae8214c127ce244d51
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "hostess";
5   version = "0.5.2";
7   src = fetchFromGitHub {
8     owner = "cbednarski";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "1izszf60nsa6pyxx3kd8qdrz3h47ylm17r9hzh9wk37f61pmm42j";
12   };
14   subPackages = [ "." ];
16   vendorHash = null;
18   meta = with lib; {
19     description = "An idempotent command-line utility for managing your /etc/hosts* file.";
20     license = licenses.mit;
21     maintainers = with maintainers; [ edlimerkaj ];
22   };