nixpkgs/pkgs/tools/misc/fsmon/default.nix
2020-01-17 06:01:30 +00:00

26 lines
555 B
Nix

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "fsmon";
version = "1.6.1";
src = fetchFromGitHub {
owner = "nowsecure";
repo = "fsmon";
rev = version;
sha256 = "1zpac37biy8jz8234q0krn7pjggz33k0grz590ravbjgfawm1ccy";
};
installPhase = ''
make install PREFIX=$out
'';
meta = with stdenv.lib; {
description = "FileSystem Monitor utility";
homepage = https://github.com/nowsecure/fsmon;
license = licenses.mit;
maintainers = [ maintainers.dezgeg ];
platforms = platforms.linux;
};
}