Skip to content

Commit

Permalink
[24.05] inotify-info 0.0.1 -> 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
motiejus committed Jul 5, 2024
1 parent 706eef5 commit a489fef
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions pkgs/by-name/in/inotify-info/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,21 @@
}:
stdenv.mkDerivation (finalAttrs: {
pname = "inotify-info";
version = "0.0.1";
version = "0.0.3";

src = fetchFromGitHub {
owner = "mikesart";
repo = "inotify-info";
rev = "refs/tags/v${finalAttrs.version}";
hash = "sha256-fsUvIXWnP6Iy9Db0wDG+ntSw6mUt0MQOTJA5vFxhH+U=";
hash = "sha256-mxZpJMmSCgm5uV5/wknVb1PdxRIF/b2k+6rdOh4b8zA=";
};

installPhase = ''
runHook preInstall
install -Dm755 _release/inotify-info $out/bin/inotify-info
runHook postInstall
'';
buildFlags = ["INOTIFYINFO_VERSION=v${finalAttrs.version}"];

installFlags = ["PREFIX=$$out"];

meta = with lib; {
description = "Easily track down the number of inotify watches, instances, and which files are being watched.";
description = "Easily track down the number of inotify watches, instances, and which files are being watched";
homepage = "https://github.com/mikesart/inotify-info";
license = licenses.mit;
mainProgram = "inotify-info";
Expand Down

0 comments on commit a489fef

Please sign in to comment.