mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
9638055534
Closes #33609
23 lines
565 B
Nix
23 lines
565 B
Nix
{ stdenv, autoreconfHook, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "inotify-tools-${version}";
|
|
version = "3.20.1";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "inotify-tools";
|
|
owner = "rvoicilas";
|
|
rev = version;
|
|
sha256 = "14dci1i4mhsd5sa33k8h3ayphk19kizynh5ql9ryibdpmcanfiyq";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/rvoicilas/inotify-tools/wiki;
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ marcweber pSub ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|