fstrm: init at 0.3.1

This commit is contained in:
Vladimír Čunát 2017-02-22 15:03:21 +01:00
parent 3bcd3d2c34
commit a04849502d
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
2 changed files with 30 additions and 0 deletions

View File

@ -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;
};
}

View File

@ -7281,6 +7281,8 @@ with pkgs;
freetts = callPackage ../development/libraries/freetts { };
fstrm = callPackage ../development/libraries/fstrm { };
cfitsio = callPackage ../development/libraries/cfitsio { };
fontconfig_210 = callPackage ../development/libraries/fontconfig/2.10.nix { };