Merge pull request #35053 from nicknovitski/reflex-init

reflex: init at 0.2.0
This commit is contained in:
Joachim F 2018-02-17 00:07:41 +00:00 committed by GitHub
commit 0b091361fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, fetchFromGitHub, buildGoPackage }:
buildGoPackage rec {
name = "reflex-${version}";
version = "0.2.0";
goPackagePath = "github.com/cespare/reflex";
src = fetchFromGitHub {
owner = "cespare";
repo = "reflex";
rev = "v${version}";
sha256 = "0ccwjmf8rjh03hpbmfiy70ai9dhgvb5vp7albffq0cmv2sl69dqr";
};
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;
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ nicknovitski ];
};
}

View file

@ -4420,6 +4420,8 @@ with pkgs;
recoll = callPackage ../applications/search/recoll { };
reflex = callPackage ../development/tools/reflex { };
reiser4progs = callPackage ../tools/filesystems/reiser4progs { };
reiserfsprogs = callPackage ../tools/filesystems/reiserfsprogs { };