entr: 3.2 -> 3.4

This commit is contained in:
Pascal Wittmann 2016-03-20 13:22:58 +01:00
parent f9cae4f6dc
commit 6ea546e3b9

View File

@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "entr-${version}";
version = "3.2";
version = "3.4";
src = fetchurl {
url = "http://entrproject.org/code/${name}.tar.gz";
sha256 = "0ikigpfzyjmr8j6snwlvxzqamrjbhlv78m8w1h0h7kzczc5f1vmi";
sha256 = "02h1drxn2lid2fwzwjpkp9p04l0g5a56v6jyj3gi3dzjsq7h0zff";
};
postPatch = ''
@ -21,12 +21,11 @@ stdenv.mkDerivation rec {
checkTarget = "test";
installFlags = [ "PREFIX=$(out)" ];
meta = {
meta = with stdenv.lib; {
homepage = http://entrproject.org/;
description = "Run arbitrary commands when files change";
license = stdenv.lib.licenses.isc;
platforms = stdenv.lib.platforms.all;
license = licenses.isc;
platforms = platforms.all;
maintainers = with maintainers; [ pSub ];
};
}