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

26 lines
557 B
Nix
Raw Normal View History

2017-01-18 15:18:25 +01:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "fsmon";
2020-07-12 07:38:38 +02:00
version = "1.8.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-07-12 07:38:38 +02:00
sha256 = "0i7irqs4100j0g19jh64p2plbwipl6p3ld6w4sscc7n8lwkxmj03";
2017-01-18 15:18:25 +01:00
};
installPhase = ''
make install PREFIX=$out
'';
meta = with stdenv.lib; {
description = "FileSystem Monitor utility";
2020-02-27 23:41:48 +01:00
homepage = "https://github.com/nowsecure/fsmon";
2017-01-18 15:18:25 +01:00
license = licenses.mit;
maintainers = [ maintainers.dezgeg ];
platforms = platforms.linux;
};
}