Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / fstrm / default.nix
blob15daa7e5a95921980759f75d24c1477256f7c9f4
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libevent, openssl }:
3 stdenv.mkDerivation rec {
4   pname = "fstrm";
5   version = "0.6.1";
7   src = fetchFromGitHub {
8     owner = "farsightsec";
9     repo = "fstrm";
10     rev = "v${version}";
11     sha256 = "sha256-/WFP2g3Vuf/qaY8pprY8XFAlpEE+0SJUlFNWfa+7ZlE=";
12   };
14   outputs = [ "bin" "out" "dev" ];
16   nativeBuildInputs = [ autoreconfHook pkg-config ];
17   buildInputs = [ libevent openssl ];
19   preBuild = ''
20     NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -L${openssl}/lib"
21   '';
23   doCheck = true;
25   meta = with lib; {
26     description = "Frame Streams implementation in C";
27     homepage = "https://github.com/farsightsec/fstrm";
28     license = licenses.asl20;
29     platforms = platforms.unix;
30   };