mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
f9fdf2d402
with structuredAttrs lists will be bash arrays which cannot be exported which will be a issue with some patches and some wrappers like cc-wrapper this makes it clearer that NIX_CFLAGS_COMPILE must be a string as lists in env cause a eval failure
36 lines
882 B
Nix
36 lines
882 B
Nix
{ lib, stdenv, fetchurl, libevent, libtirpc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "trickle";
|
|
version = "1.07";
|
|
|
|
src = fetchurl {
|
|
url = "https://monkey.org/~marius/trickle/trickle-${version}.tar.gz";
|
|
sha256 = "0s1qq3k5mpcs9i7ng0l9fvr1f75abpbzfi1jaf3zpzbs1dz50dlx";
|
|
};
|
|
|
|
buildInputs = [ libevent libtirpc ];
|
|
|
|
preConfigure = ''
|
|
sed -i 's|libevent.a|libevent.so|' configure
|
|
'';
|
|
|
|
preBuild = ''
|
|
sed -i '/#define in_addr_t/ s:^://:' config.h
|
|
'';
|
|
|
|
NIX_LDFLAGS = [ "-levent" "-ltirpc" ];
|
|
env.NIX_CFLAGS_COMPILE = toString [ "-I${libtirpc.dev}/include/tirpc" ];
|
|
|
|
configureFlags = [ "--with-libevent" ];
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
meta = {
|
|
description = "Lightweight userspace bandwidth shaper";
|
|
license = lib.licenses.bsd3;
|
|
homepage = "https://monkey.org/~marius/pages/?page=trickle";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|