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

31 lines
706 B
Nix
Raw Normal View History

2014-07-12 11:19:08 +00:00
{ fetchurl, perl, stdenv }:
stdenv.mkDerivation rec {
2015-02-14 08:01:22 +00:00
name = "sec-2.7.7";
2014-07-12 11:19:08 +00:00
src = fetchurl {
url = "mirror://sourceforge/simple-evcorr/${name}.tar.gz";
2015-02-14 08:01:22 +00:00
sha256 = "116nn8fg24nwcimm8gcfp52bsgh1ckrspjr8sk4i0arvpl3d12m9";
2014-07-12 11:19:08 +00:00
};
buildInputs = [ perl ];
configurePhase = ":";
buildPhase = ":";
installPhase = ''
mkdir -p $out/bin $out/share/man/man1
cp sec $out/bin
cp sec.man $out/share/man/man1/sec.1
'';
doCheck = false;
meta = {
homepage = "http://simple-evcorr.sourceforge.net/";
license = stdenv.lib.licenses.gpl2;
2014-07-12 11:19:08 +00:00
description = "Simple Event Correlator";
maintainers = [ stdenv.lib.maintainers.tv ];
platforms = stdenv.lib.platforms.all;
};
}