2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config }:
|
2010-10-24 22:52:13 -07:00
|
|
|
|
2015-06-25 14:11:03 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "libfixposix";
|
2018-03-20 10:34:42 -07:00
|
|
|
version="0.4.3";
|
2010-10-24 22:52:13 -07:00
|
|
|
|
2017-03-18 13:21:50 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sionescu";
|
|
|
|
repo = "libfixposix";
|
|
|
|
rev = "v${version}";
|
2018-03-20 10:34:42 -07:00
|
|
|
sha256 = "1x4q6yspi5g2s98vq4qszw4z3zjgk9l5zs8471w4d4cs6l97w08j";
|
2015-06-25 14:11:03 -07:00
|
|
|
};
|
2010-10-24 22:52:13 -07:00
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2010-10-24 22:52:13 -07:00
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/sionescu/libfixposix";
|
2017-03-18 13:21:50 -07:00
|
|
|
description = "Thin wrapper over POSIX syscalls and some replacement functionality";
|
|
|
|
license = licenses.boost;
|
|
|
|
maintainers = with maintainers; [ orivej raskin ];
|
2015-06-25 14:11:03 -07:00
|
|
|
platforms = platforms.linux;
|
2010-10-24 22:52:13 -07:00
|
|
|
};
|
2015-06-25 14:11:03 -07:00
|
|
|
}
|