reflex: 0.2.0 -> 0.3.1

This commit is contained in:
Aaron Jheng 2022-04-09 14:56:22 +00:00
parent 375eaf2b4f
commit 1d241a70b5
No known key found for this signature in database
GPG key ID: F6A547A869D050A3

View file

@ -1,19 +1,20 @@
{ lib, fetchFromGitHub, buildGoPackage }: { lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
buildGoPackage rec {
pname = "reflex"; pname = "reflex";
version = "0.2.0"; version = "0.3.1";
goPackagePath = "github.com/cespare/reflex";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "cespare"; owner = "cespare";
repo = "reflex"; repo = "reflex";
rev = "v${version}"; rev = "v${version}";
sha256 = "0ccwjmf8rjh03hpbmfiy70ai9dhgvb5vp7albffq0cmv2sl69dqr"; sha256 = "sha256-/2qVm2xpSFVspA16rkiIw/qckxzXQp/1EGOl0f9KljY=";
}; };
vendorSha256 = "sha256-JCtVYDHbhH2i7tGNK1jvgHCjU6gMMkNhQ2ZnlTeqtmA=";
ldflags = [ "-s" "-w" ];
meta = with lib; { meta = with lib; {
description = "A small tool to watch a directory and rerun a command when certain files change"; description = "A small tool to watch a directory and rerun a command when certain files change";
homepage = "https://github.com/cespare/reflex"; homepage = "https://github.com/cespare/reflex";