1 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libevent, openssl }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "0b6x9wgyn92vykkmd3ynhnpbdl77zb4wf4rm7p0h8p9pwq953hdm";
14 outputs = [ "bin" "out" "dev" ];
16 nativeBuildInputs = [ autoreconfHook pkg-config ];
17 buildInputs = [ libevent openssl ];
20 NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -L${openssl}/lib"
26 description = "Frame Streams implementation in C";
27 homepage = "https://github.com/farsightsec/fstrm";
28 license = licenses.asl20;
29 platforms = platforms.unix;