inotify-tools: 3.21.9.5 -> 3.21.9.6
While at it: - added trivial updater - switched github owner and homepage to inotify-tools
This commit is contained in:
parent
e5983a9833
commit
4f87b2de68
1 changed files with 11 additions and 5 deletions
|
@ -1,20 +1,26 @@
|
||||||
{ lib, stdenv, autoreconfHook, fetchFromGitHub }:
|
{ lib, stdenv, autoreconfHook, fetchFromGitHub, nix-update-script }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "inotify-tools";
|
pname = "inotify-tools";
|
||||||
version = "3.21.9.5";
|
version = "3.21.9.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
repo = "inotify-tools";
|
repo = "inotify-tools";
|
||||||
owner = "rvoicilas";
|
owner = "inotify-tools";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-2eMYCFqecpY/yvhwl5+kvQ+pkdWzhX6Xsb+rcJEK37c=";
|
sha256 = "sha256-oKcVmF39N43g8O1S+xwUhVJryFcW+ZUteyoe3fUkRH8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook ];
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
updateScript = nix-update-script {
|
||||||
|
attrPath = pname;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/rvoicilas/inotify-tools/wiki";
|
homepage = "https://github.com/inotify-tools/inotify-tools/wiki";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = with maintainers; [ marcweber pSub shamilton ];
|
maintainers = with maintainers; [ marcweber pSub shamilton ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
|
Loading…
Reference in a new issue