3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/misc/inotify-tools/default.nix
Pascal Wittmann f06419e1a8 inotify-tools: update from 3.13 to 3.14 and add myself to maintainers
note: project has moved to github on 23 November 2009
2014-08-17 23:13:12 +02:00

19 lines
515 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "inotify-tools-${version}";
version = "3.14";
src = fetchurl {
url = "http://github.com/downloads/rvoicilas/inotify-tools/inotify-tools-${version}.tar.gz";
sha256 = "0icl4bx041axd5dvhg89kilfkysjj86hjakc7bk8n49cxjn4cha6";
};
meta = with stdenv.lib; {
homepage = https://github.com/rvoicilas/inotify-tools/wiki;
license = licenses.gpl2;
maintainers = with maintainers; [ marcweber pSub ];
platforms = platforms.linux;
};
}