3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/admin/sec/default.nix

33 lines
730 B
Nix
Raw Normal View History

2018-10-05 14:32:51 +01:00
{ fetchFromGitHub, perl, stdenv }:
2014-07-12 12:19:08 +01:00
stdenv.mkDerivation rec {
2018-10-05 14:32:51 +01:00
name = "sec-${meta.version}";
2014-07-12 12:19:08 +01:00
2018-10-05 14:32:51 +01:00
src = fetchFromGitHub {
owner = "simple-evcorr";
repo = "sec";
rev = meta.version;
sha256 = "025cz3mr5yrdgs0i3h8v2znhvjkyh78kba1rzvl03ns2b1c49168";
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 = {
2018-10-05 14:32:51 +01:00
homepage = https://simple-evcorr.github.io;
license = stdenv.lib.licenses.gpl2;
2014-07-12 12:19:08 +01:00
description = "Simple Event Correlator";
maintainers = [ stdenv.lib.maintainers.tv ];
platforms = stdenv.lib.platforms.all;
version = "2.8.2";
2014-07-12 12:19:08 +01:00
};
}