From a04849502d1f7939148b1902791390219244437f Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Wed, 22 Feb 2017 15:03:21 +0100 Subject: fstrm: init at 0.3.1 --- pkgs/development/libraries/fstrm/default.nix | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pkgs/development/libraries/fstrm/default.nix (limited to 'pkgs/development/libraries/fstrm') diff --git a/pkgs/development/libraries/fstrm/default.nix b/pkgs/development/libraries/fstrm/default.nix new file mode 100644 index 0000000000000..3700b6f63551b --- /dev/null +++ b/pkgs/development/libraries/fstrm/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libevent }: + +stdenv.mkDerivation rec { + name = "fstrm-${version}"; + version = "0.3.1"; + + src = fetchFromGitHub { + owner = "farsightsec"; + repo = "fstrm"; + rev = "v${version}"; + sha256 = "1n8hpywjgkzm0xh0hvryf5r6v2sbpgr3qy0grxq9yha7kqcam4f3"; + }; + + outputs = [ "bin" "out" "dev" ]; + + nativeBuildInputs = [ autoreconfHook pkgconfig ]; + buildInputs = [ libevent ]; + + doCheck = true; + + meta = with stdenv.lib; { + description = "Frame Streams implementation in C"; + homepage = https://github.com/farsightsec/fstrm; + license = licenses.asl20; + platforms = platforms.unix; + }; +} + -- cgit 1.4.1