summary refs log tree commit diff
path: root/pkgs/servers/nosql/hyperdex/libpo6.nix
blob: fa68020b539c78b94800a5b2b0afaf878a5fdceb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, unzip, autoconf, automake, libtool }:

stdenv.mkDerivation rec {
  name = "libpo6-${version}";
  version = "0.5.2";

  src = fetchurl {
    url = "https://github.com/rescrv/po6/archive/releases/${version}.zip";
    sha256 = "17grzkh6aw1f68qvkhivbb6vwbm6jd41ysbfn88pypf5lczxrxly";
  };
  buildInputs = [ unzip autoconf automake libtool ];
  preConfigure = "autoreconf -i";

  meta = with stdenv.lib; {
    description = "POSIX wrappers for C++";
    homepage = https://github.com/rescrv/po6;
    license = licenses.bsd3;
  };
}