2017-03-18 20:21:50 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig }:
|
2010-10-25 05:52:13 +00:00
|
|
|
|
2015-06-25 21:11:03 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name="libfixposix-${version}";
|
2017-03-18 20:21:50 +00:00
|
|
|
version="0.4.1";
|
2010-10-25 05:52:13 +00:00
|
|
|
|
2017-03-18 20:21:50 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sionescu";
|
|
|
|
repo = "libfixposix";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "19wjb43mn16f4lin5a2dfi3ym2hy7kqibs0z631d205b16vxas15";
|
2015-06-25 21:11:03 +00:00
|
|
|
};
|
2010-10-25 05:52:13 +00:00
|
|
|
|
2017-03-18 20:21:50 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2010-10-25 05:52:13 +00:00
|
|
|
|
2015-06-25 21:11:03 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-03-18 20:21:50 +00:00
|
|
|
homepage = https://github.com/sionescu/libfixposix;
|
|
|
|
description = "Thin wrapper over POSIX syscalls and some replacement functionality";
|
|
|
|
license = licenses.boost;
|
|
|
|
maintainers = with maintainers; [ orivej raskin ];
|
2015-06-25 21:11:03 +00:00
|
|
|
platforms = platforms.linux;
|
2010-10-25 05:52:13 +00:00
|
|
|
};
|
2015-06-25 21:11:03 +00:00
|
|
|
}
|