Merge pull request #202843 from r-ryantm/auto-update/fsmon
fsmon: 1.8.4 -> 1.8.5
This commit is contained in:
commit
566626804f
1 changed files with 9 additions and 5 deletions
|
@ -1,14 +1,17 @@
|
||||||
{ lib, stdenv, fetchFromGitHub }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "fsmon";
|
pname = "fsmon";
|
||||||
version = "1.8.4";
|
version = "1.8.5";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "nowsecure";
|
owner = "nowsecure";
|
||||||
repo = "fsmon";
|
repo = "fsmon";
|
||||||
rev = version;
|
rev = "refs/tags/${version}";
|
||||||
sha256 = "sha256-4KF8h+YdCMrF9Yk/9y71WqNjzyoEZnddriDZAdpIaa4=";
|
hash = "sha256-vAlAnGeFMgLIKaqUusBV7QalYh0+dZdifUvZwebk65U=";
|
||||||
};
|
};
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
@ -18,8 +21,9 @@ stdenv.mkDerivation rec {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "FileSystem Monitor utility";
|
description = "FileSystem Monitor utility";
|
||||||
homepage = "https://github.com/nowsecure/fsmon";
|
homepage = "https://github.com/nowsecure/fsmon";
|
||||||
|
changelog = "https://github.com/nowsecure/fsmon/releases/tag/${version}";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = [ maintainers.dezgeg ];
|
maintainers = with maintainers; [ dezgeg ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue