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

31 lines
689 B
Nix
Raw Normal View History

2014-07-12 11:19:08 +00:00
{ fetchurl, perl, stdenv }:
stdenv.mkDerivation rec {
2014-07-29 20:29:16 +00:00
name = "sec-2.7.6";
2014-07-12 11:19:08 +00:00
src = fetchurl {
url = "mirror://sourceforge/simple-evcorr/${name}.tar.gz";
2014-07-29 20:29:16 +00:00
sha256 = "1lrssln55p3bmn3d2hl8c5l5ix32bn8065w1cgycwsf7r6fww51p";
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 = "GPLv2";
description = "Simple Event Correlator";
maintainers = [ stdenv.lib.maintainers.tv ];
platforms = stdenv.lib.platforms.all;
};
}