nixpkgs/pkgs/tools/networking/eggdrop/default.nix

33 lines
643 B
Nix
Raw Normal View History

2015-04-27 04:30:28 +00:00
{ stdenv, fetchurl, tcl }:
2015-04-27 04:30:28 +00:00
stdenv.mkDerivation rec {
name = "eggdrop-${version}";
version = "1.6.21";
src = fetchurl {
2015-04-27 04:30:28 +00:00
url = "ftp://ftp.eggheads.org/pub/eggdrop/GNU/1.6/eggdrop${version}.tar.gz";
sha256 = "1galvbh9y4c3msrg1s9na0asm077mh1g2i2vsv1vczmfrbgq92vs";
};
2015-04-27 04:30:28 +00:00
buildInputs = [ tcl ];
preConfigure = ''
prefix=$out/eggdrop
mkdir -p $prefix
'';
postConfigure = ''
make config
'';
2015-04-27 04:30:28 +00:00
configureFlags = [
"--with-tcllib=${tcl}/lib/lib${tcl.libPrefix}.so"
"--with-tclinc=${tcl}/include/tcl.h"
];
meta = with stdenv.lib; {
license = licenses.gpl2;
platforms = platforms.unix;
};
}