nixpkgs/pkgs/tools/admin/sec/default.nix
2015-02-14 09:01:22 +01:00

31 lines
706 B
Nix

{ fetchurl, perl, stdenv }:
stdenv.mkDerivation rec {
name = "sec-2.7.7";
src = fetchurl {
url = "mirror://sourceforge/simple-evcorr/${name}.tar.gz";
sha256 = "116nn8fg24nwcimm8gcfp52bsgh1ckrspjr8sk4i0arvpl3d12m9";
};
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;
description = "Simple Event Correlator";
maintainers = [ stdenv.lib.maintainers.tv ];
platforms = stdenv.lib.platforms.all;
};
}