summary refs log blame commit diff
path: root/pkgs/tools/misc/fsmon/default.nix
blob: 94b209bcd0009ccc1cbeb520d39aaaf4c6a46b79 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                 

                         
                  
                    



                         
                  
                                                                   





                            
                    
                                               
                                                    




                                         
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "fsmon";
  version = "1.8.4";

  src = fetchFromGitHub {
    owner = "nowsecure";
    repo = "fsmon";
    rev = version;
    sha256 = "sha256-4KF8h+YdCMrF9Yk/9y71WqNjzyoEZnddriDZAdpIaa4=";
  };

  installPhase = ''
    make install PREFIX=$out
  '';

  meta = with lib; {
    description = "FileSystem Monitor utility";
    homepage = "https://github.com/nowsecure/fsmon";
    license = licenses.mit;
    maintainers = [ maintainers.dezgeg ];
    platforms = platforms.linux;
  };
}