summary refs log tree commit diff
path: root/pkgs/tools/admin/sec/default.nix
blob: 6ce42b69f2cf5b344735c5416723e66408a2839a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ fetchFromGitHub, perl, stdenv }:

stdenv.mkDerivation rec {
  name = "sec-${meta.version}";

  src = fetchFromGitHub {
    owner = "simple-evcorr";
    repo = "sec";
    rev = meta.version;
    sha256 = "17qzw7k1r3svagaf6jb7166grwqsyxwd6p23b2m9q9h3ggcwynp9";
  };

  buildInputs = [ perl ];

  dontBuild = false;
  doCheck = false;

  installPhase = ''
    mkdir -p $out/bin $out/share/man/man1
    cp sec $out/bin
    cp sec.man $out/share/man/man1/sec.1
  '';

  meta = {
    homepage = https://simple-evcorr.github.io;
    license = stdenv.lib.licenses.gpl2;
    description = "Simple Event Correlator";
    maintainers = [ stdenv.lib.maintainers.tv ];
    platforms = stdenv.lib.platforms.all;
    version = "2.8.1";
  };
}