nixpkgs/pkgs/tools/admin/sec/default.nix

33 lines
694 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ fetchFromGitHub, perl, lib, stdenv }:
2014-07-12 12:19:08 +01:00
stdenv.mkDerivation rec {
pname = "sec";
version = "2.8.3";
2014-07-12 12:19:08 +01:00
2018-10-05 14:32:51 +01:00
src = fetchFromGitHub {
owner = "simple-evcorr";
repo = "sec";
rev = version;
2020-05-10 17:05:46 +01:00
sha256 = "0ryic5ilj1i5l41440i0ss6j3yv796fz3gr0qij5pqyd1z21md83";
2014-07-12 12:19:08 +01:00
};
buildInputs = [ perl ];
dontBuild = false;
doCheck = false;
2014-07-12 12:19:08 +01:00
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";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl2;
2014-07-12 12:19:08 +01:00
description = "Simple Event Correlator";
2021-01-15 09:19:50 +00:00
maintainers = [ lib.maintainers.tv ];
platforms = lib.platforms.all;
2014-07-12 12:19:08 +01:00
};
}