f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
30 lines
681 B
Nix
30 lines
681 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 ];
|
|
|
|
dontBuild = false;
|
|
doCheck = false;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin $out/share/man/man1
|
|
cp sec $out/bin
|
|
cp sec.man $out/share/man/man1/sec.1
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|