biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / reflex / default.nix
blob98cb6141003cba75e781f29150809721dcda62e3
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     mainProgram = "reflex";
21     homepage = "https://github.com/cespare/reflex";
22     license = licenses.mit;
23     maintainers = with maintainers; [ nicknovitski ];
24   };