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

26 lines
553 B
Nix
Raw Normal View History

2017-01-18 14:18:25 +00:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "fsmon";
2017-12-24 00:53:57 +00:00
version = "1.5";
2017-01-18 14:18:25 +00:00
src = fetchFromGitHub {
owner = "nowsecure";
repo = "fsmon";
2019-09-08 23:38:31 +00:00
rev = version;
2017-12-24 00:53:57 +00:00
sha256 = "1b99cd5k2zh30sagp3f55jvj1r48scxibv7aqqc2sp82sci59npg";
2017-01-18 14:18:25 +00: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;
};
}