Merge pull request #202843 from r-ryantm/auto-update/fsmon

fsmon: 1.8.4 -> 1.8.5
This commit is contained in:
Nikolay Korotkiy 2022-11-26 18:24:32 +04:00 committed by GitHub
commit 566626804f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}; };
} }