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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
554 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2017-01-18 14:18:25 +00:00
stdenv.mkDerivation rec {
pname = "fsmon";
2021-06-17 10:59:51 +01:00
version = "1.8.4";
2017-01-18 14:18:25 +00:00
src = fetchFromGitHub {
owner = "nowsecure";
repo = "fsmon";
2019-09-09 00:38:31 +01:00
rev = version;
2021-06-17 10:59:51 +01:00
sha256 = "sha256-4KF8h+YdCMrF9Yk/9y71WqNjzyoEZnddriDZAdpIaa4=";
2017-01-18 14:18:25 +00:00
};
installPhase = ''
make install PREFIX=$out
'';
meta = with lib; {
2017-01-18 14:18:25 +00:00
description = "FileSystem Monitor utility";
2020-02-27 22:41:48 +00:00
homepage = "https://github.com/nowsecure/fsmon";
2017-01-18 14:18:25 +00:00
license = licenses.mit;
maintainers = [ maintainers.dezgeg ];
platforms = platforms.linux;
};
}