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

26 lines
568 B
Nix
Raw Normal View History

2017-01-18 17:18:25 +03:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "fsmon-${version}";
2017-12-24 03:53:57 +03:00
version = "1.5";
2017-01-18 17:18:25 +03:00
src = fetchFromGitHub {
owner = "nowsecure";
repo = "fsmon";
rev = "${version}";
2017-12-24 03:53:57 +03:00
sha256 = "1b99cd5k2zh30sagp3f55jvj1r48scxibv7aqqc2sp82sci59npg";
2017-01-18 17:18:25 +03: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;
};
}