nixpkgs/pkgs/development/tools/misc/inotify-tools/default.nix
Ricardo M. Correia f9e63ca20d inotify-tools: Fix hash
The hash wasn't updated when the version was bumped.
2014-09-01 15:07:54 +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 = "0by9frv1k59f76cx08sn06sk6lmdxsfb6zr0rshzhyrxi6lcqar2";
};
meta = with stdenv.lib; {
homepage = https://github.com/rvoicilas/inotify-tools/wiki;
license = licenses.gpl2;
maintainers = with maintainers; [ marcweber pSub ];
platforms = platforms.linux;
};
}