forked from mirrors/nixpkgs
fstrm: init at 0.3.1
This commit is contained in:
parent
3bcd3d2c34
commit
a04849502d
28
pkgs/development/libraries/fstrm/default.nix
Normal file
28
pkgs/development/libraries/fstrm/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
|
@ -7281,6 +7281,8 @@ with pkgs;
|
||||||
|
|
||||||
freetts = callPackage ../development/libraries/freetts { };
|
freetts = callPackage ../development/libraries/freetts { };
|
||||||
|
|
||||||
|
fstrm = callPackage ../development/libraries/fstrm { };
|
||||||
|
|
||||||
cfitsio = callPackage ../development/libraries/cfitsio { };
|
cfitsio = callPackage ../development/libraries/cfitsio { };
|
||||||
|
|
||||||
fontconfig_210 = callPackage ../development/libraries/fontconfig/2.10.nix { };
|
fontconfig_210 = callPackage ../development/libraries/fontconfig/2.10.nix { };
|
||||||
|
|
Loading…
Reference in a new issue