Added fileschanged version 0.6.9.
svn path=/nixpkgs/trunk/; revision=24511
This commit is contained in:
parent
e6bd263b4f
commit
7ec0584160
31
pkgs/tools/misc/fileschanged/default.nix
Normal file
31
pkgs/tools/misc/fileschanged/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ stdenv, fetchurl, fam }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "fileschanged-0.6.9";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://nongnu.askapache.com/fileschanged/fileschanged-0.6.9.tar.gz";
|
||||
sha256 = "0ajc9h023vzpnlqqjli4wbvs0q36nr5p9msc3wzbic8rk687qcxc";
|
||||
};
|
||||
|
||||
buildInputs = [ fam ];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
homepage = "http://www.nongnu.org/fileschanged/";
|
||||
description = "A command-line utility that reports when files have been altered.";
|
||||
license = "GPL";
|
||||
|
||||
longDescription = ''
|
||||
This utility is a client to FAM (File Alteration Monitor) servers
|
||||
like FAM or Gamin. You give it some filenames on the command line
|
||||
and then it monitors those files for changes. When it discovers
|
||||
that a file has been altered, it displays the filename on the
|
||||
standard-output or executes a given command.
|
||||
'';
|
||||
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = [ stdenv.lib.maintainers.simons ];
|
||||
};
|
||||
}
|
@ -604,6 +604,8 @@ let
|
||||
|
||||
file = callPackage ../tools/misc/file { };
|
||||
|
||||
fileschanged = callPackage ../tools/misc/fileschanged { };
|
||||
|
||||
findutils =
|
||||
if stdenv.isDarwin
|
||||
then findutils4227
|
||||
|
Loading…
Reference in New Issue
Block a user