3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #9657 from kamilchm/gawp

gawp: init at 2015-08-31
This commit is contained in:
Arseniy Seroka 2015-09-05 01:26:57 +03:00
commit 949cc5cd8d
2 changed files with 20 additions and 0 deletions

View file

@ -1607,6 +1607,8 @@ let
gawkInteractive = appendToName "interactive"
(gawk.override { readlineSupport = true; });
gawp = goPackages.gawp;
gbdfed = callPackage ../tools/misc/gbdfed {
gtk = gtk2;
};

View file

@ -626,6 +626,24 @@ let
sha256 = "1p4p8755v2nrn54rik7yifpg9szyg44y5rpp0kryx4ycl72307rj";
};
gawp = buildFromGitHub {
rev = "488705639109de54d38974cc31353d34cc2cd609";
date = "2015-08-31";
owner = "martingallagher";
repo = "gawp";
sha256 = "0iqqd63nqdijdskdb9f0jwnm6akkh1p2jw4p2w7r1dbaqz1znyay";
dontInstallSrc = true;
buildInputs = [ fsnotify.v1 yaml-v2 ];
meta = with stdenv.lib; {
homepage = "https://github.com/martingallagher/gawp";
description = "A simple, configurable, file watching, job execution tool implemented in Go.";
maintainers = with maintainers; [ kamilchm ];
license = licenses.asl20 ;
platforms = platforms.all;
};
};
gcloud-golang = buildFromGitHub {
rev = "6335269abf9002cf5a84613c13cda6010842b834";
owner = "GoogleCloudPlatform";