2016-01-18 00:04:40 +01:00
|
|
|
{ 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";
|
2015-11-03 15:19:10 +01:00
|
|
|
sha256 = "17grzkh6aw1f68qvkhivbb6vwbm6jd41ysbfn88pypf5lczxrxly";
|
2014-12-13 01:20:04 +01:00
|
|
|
};
|
2016-01-18 00:04:40 +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;
|
|
|
|
};
|
|
|
|
}
|