Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / reflex / default.nix
blob406740e784f02852dec099a59931554ac4188c08
1 { lib, fetchFromGitHub, buildGoModule }:
3 buildGoModule rec {
4   pname = "reflex";
5   version = "0.3.1";
7   src = fetchFromGitHub {
8     owner = "cespare";
9     repo = "reflex";
10     rev = "v${version}";
11     sha256 = "sha256-/2qVm2xpSFVspA16rkiIw/qckxzXQp/1EGOl0f9KljY=";
12   };
14   vendorHash = "sha256-JCtVYDHbhH2i7tGNK1jvgHCjU6gMMkNhQ2ZnlTeqtmA=";
16   ldflags = [ "-s" "-w" ];
18   meta = with lib; {
19     description = "A small tool to watch a directory and rerun a command when certain files change";
20     homepage = "https://github.com/cespare/reflex";
21     license = licenses.mit;
22     maintainers = with maintainers; [ nicknovitski ];
23   };