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

34 lines
750 B
Nix
Raw Normal View History

2012-07-16 10:06:31 +00:00
{ stdenv, fetchurl, libevent }:
stdenv.mkDerivation rec {
name = "trickle-1.07";
src = fetchurl {
url = "https://monkey.org/~marius/trickle/${name}.tar.gz";
2012-07-16 10:06:31 +00:00
sha256 = "0s1qq3k5mpcs9i7ng0l9fvr1f75abpbzfi1jaf3zpzbs1dz50dlx";
};
2016-02-21 09:44:40 +00:00
buildInputs = [ libevent ];
2012-07-16 10:06:31 +00:00
preConfigure = ''
sed -i 's|libevent.a|libevent.so|' configure
'';
preBuild = ''
sed -i '/#define in_addr_t/ s:^://:' config.h
'';
LDFLAGS = "-levent";
2018-07-25 21:44:21 +00:00
configureFlags = [ "--with-libevent" ];
2012-07-16 10:06:31 +00:00
hardeningDisable = [ "format" ];
2016-02-21 09:44:40 +00:00
2012-07-16 10:06:31 +00:00
meta = {
description = "Lightweight userspace bandwidth shaper";
license = stdenv.lib.licenses.bsd3;
homepage = https://monkey.org/~marius/pages/?page=trickle;
2012-07-16 10:06:31 +00:00
platforms = stdenv.lib.platforms.linux;
};
}