traefik: add djds as maintainer (#377217)
[NixPkgs.git] / pkgs / by-name / ho / hostess / package.nix
blob28ab7185d9dfe3a0cd0e171ba0578b2dad71461c
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "hostess";
9   version = "0.5.2";
11   src = fetchFromGitHub {
12     owner = "cbednarski";
13     repo = pname;
14     rev = "v${version}";
15     sha256 = "1izszf60nsa6pyxx3kd8qdrz3h47ylm17r9hzh9wk37f61pmm42j";
16   };
18   subPackages = [ "." ];
20   vendorHash = null;
22   meta = with lib; {
23     description = "Idempotent command-line utility for managing your /etc/hosts* file";
24     mainProgram = "hostess";
25     license = licenses.mit;
26     maintainers = with maintainers; [ edlimerkaj ];
27   };