20 lines
497 B
Nix
20 lines
497 B
Nix
|
args: with args;
|
||
|
stdenv.mkDerivation {
|
||
|
name = "inotify-tools-3.13";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = mirror://sourceforge/inotify-tools/inotify-tools/3.13/inotify-tools-3.13.tar.gz;
|
||
|
sha256 = "0icl4bx041axd5dvhg89kilfkysjj86hjakc7bk8n49cxjn4cha6";
|
||
|
};
|
||
|
|
||
|
buildInputs = [];
|
||
|
|
||
|
meta = {
|
||
|
description = "";
|
||
|
homepage = http://sourceforge.net/projects/inotify-tools/;
|
||
|
license = "GPLv2";
|
||
|
maintainers = [args.lib.maintainers.marcweber];
|
||
|
platforms = args.lib.platforms.linux;
|
||
|
};
|
||
|
}
|