reflex: 0.2.0 -> 0.3.1
This commit is contained in:
parent
375eaf2b4f
commit
1d241a70b5
@ -1,19 +1,20 @@
|
||||
{ lib, fetchFromGitHub, buildGoPackage }:
|
||||
{ lib, fetchFromGitHub, buildGoModule }:
|
||||
|
||||
|
||||
buildGoPackage rec {
|
||||
buildGoModule rec {
|
||||
pname = "reflex";
|
||||
version = "0.2.0";
|
||||
|
||||
goPackagePath = "github.com/cespare/reflex";
|
||||
version = "0.3.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cespare";
|
||||
repo = "reflex";
|
||||
rev = "v${version}";
|
||||
sha256 = "0ccwjmf8rjh03hpbmfiy70ai9dhgvb5vp7albffq0cmv2sl69dqr";
|
||||
sha256 = "sha256-/2qVm2xpSFVspA16rkiIw/qckxzXQp/1EGOl0f9KljY=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-JCtVYDHbhH2i7tGNK1jvgHCjU6gMMkNhQ2ZnlTeqtmA=";
|
||||
|
||||
ldflags = [ "-s" "-w" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A small tool to watch a directory and rerun a command when certain files change";
|
||||
homepage = "https://github.com/cespare/reflex";
|
||||
|
Loading…
Reference in New Issue
Block a user