nixpkgs-suyu/pkgs/servers/nosql/hyperdex/libpo6.nix

20 lines
490 B
Nix
Raw Normal View History

{ stdenv, fetchurl, unzip, autoreconfHook }:
2014-12-13 01:20:04 +01:00
stdenv.mkDerivation rec {
name = "libpo6-${version}";
version = "0.5.2";
src = fetchurl {
url = "https://github.com/rescrv/po6/archive/releases/${version}.zip";
sha256 = "17grzkh6aw1f68qvkhivbb6vwbm6jd41ysbfn88pypf5lczxrxly";
2014-12-13 01:20:04 +01:00
};
buildInputs = [ unzip autoreconfHook ];
2014-12-13 01:20:04 +01:00
meta = with stdenv.lib; {
description = "POSIX wrappers for C++";
homepage = https://github.com/rescrv/po6;
license = licenses.bsd3;
};
}