2022-03-30 09:31:56 +00:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
pname = "gawp";
|
2022-03-30 09:31:56 +00:00
|
|
|
version = "unstable-2016-01-21";
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
goPackagePath = "github.com/martingallagher/gawp";
|
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "martingallagher";
|
|
|
|
repo = "gawp";
|
|
|
|
rev = "5db2d8faa220e8d6eaf8677354bd197bf621ff7f";
|
|
|
|
sha256 = "sha256-DGTSz+4gaEd+FMSPvtY6kY4gJGnJah3exvu13sNadS0=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/martingallagher/gawp";
|
|
|
|
description = "A simple, configurable, file watching, job execution tool";
|
2021-01-15 22:18:51 +00:00
|
|
|
license = lib.licenses.asl20;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|