nixpkgs/pkgs/tools/misc/fsmon/default.nix

26 lines
555 B
Nix
Raw Normal View History

2017-01-18 15:18:25 +01:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "fsmon";
2020-01-17 07:01:30 +01:00
version = "1.6.1";
2017-01-18 15:18:25 +01:00
src = fetchFromGitHub {
owner = "nowsecure";
repo = "fsmon";
2019-09-09 01:38:31 +02:00
rev = version;
2020-01-17 07:01:30 +01:00
sha256 = "1zpac37biy8jz8234q0krn7pjggz33k0grz590ravbjgfawm1ccy";
2017-01-18 15:18:25 +01:00
};
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;
};
}