From 11f8b98cccc72900f31f95ad0c671c543dfc7d96 Mon Sep 17 00:00:00 2001 From: Marc Weber Date: Fri, 15 Jan 2010 19:35:02 +0000 Subject: [PATCH] adding inotify-tools svn path=/nixpkgs/trunk/; revision=19469 --- .../tools/misc/inotify-tools/default.nix | 19 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++++ 2 files changed, 23 insertions(+) create mode 100644 pkgs/development/tools/misc/inotify-tools/default.nix diff --git a/pkgs/development/tools/misc/inotify-tools/default.nix b/pkgs/development/tools/misc/inotify-tools/default.nix new file mode 100644 index 00000000000..edf2ee38946 --- /dev/null +++ b/pkgs/development/tools/misc/inotify-tools/default.nix @@ -0,0 +1,19 @@ +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; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 17c19d469bc..ffee4517c52 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2859,6 +2859,10 @@ let inherit fetchurl stdenv; }; + inotifyTools = import ../development/tools/misc/inotify-tools { + inherit fetchurl stdenv; + }; + jikespg = import ../development/tools/parsing/jikespg { inherit fetchurl stdenv; };