2016-01-17 15:04:40 -08:00
|
|
|
{ stdenv, fetchurl, unzip, autoreconfHook, libpo6, pkgconfig }:
|
2014-12-12 16:20:04 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libe-${version}";
|
|
|
|
version = "0.8.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2015-11-03 06:19:10 -08:00
|
|
|
url = "https://github.com/rescrv/e/archive/releases/${version}.zip";
|
|
|
|
sha256 = "18xm0hcnqdf0ipfn19jrgzqsxij5xjbbnihhzc57n4v7yfdca1w3";
|
2014-12-12 16:20:04 -08:00
|
|
|
};
|
2016-01-17 15:04:40 -08:00
|
|
|
|
|
|
|
buildInputs = [ unzip autoreconfHook libpo6 pkgconfig ];
|
2014-12-12 16:20:04 -08:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Library containing high-performance datastructures and utilities for C++";
|
|
|
|
homepage = https://github.com/rescrv/e;
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|