Skip to content

Commit

Permalink
fstrm: 0.3.1 -> 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Aug 29, 2017
1 parent 1bfda6a commit 2639782
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions pkgs/development/libraries/fstrm/default.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,24 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libevent }:
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libevent, openssl }:

stdenv.mkDerivation rec {
name = "fstrm-${version}";
version = "0.3.1";
version = "0.3.2";

src = fetchFromGitHub {
owner = "farsightsec";
repo = "fstrm";
rev = "v${version}";
sha256 = "1n8hpywjgkzm0xh0hvryf5r6v2sbpgr3qy0grxq9yha7kqcam4f3";
sha256 = "135m0d4z1wbiaazs3bh6z53a35mgs33gvfki8pl4xfaw9cfcfpd2";
};

outputs = [ "bin" "out" "dev" ];

nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ libevent ];
buildInputs = [ libevent openssl ];

preBuild = ''
NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -L${openssl}/lib"
'';

doCheck = true;

Expand Down

0 comments on commit 2639782

Please sign in to comment.