2021-05-25 16:25:37 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, getconf }:
|
2010-10-25 05:52:13 +00:00
|
|
|
|
2015-06-25 21:11:03 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "libfixposix";
|
2018-03-20 17:34:42 +00:00
|
|
|
version="0.4.3";
|
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}";
|
2018-03-20 17:34:42 +00:00
|
|
|
sha256 = "1x4q6yspi5g2s98vq4qszw4z3zjgk9l5zs8471w4d4cs6l97w08j";
|
2015-06-25 21:11:03 +00:00
|
|
|
};
|
2010-10-25 05:52:13 +00:00
|
|
|
|
2021-05-25 16:25:37 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ] ++ lib.optionals stdenv.isDarwin [ getconf ];
|
2010-10-25 05:52:13 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/sionescu/libfixposix";
|
2017-03-18 20:21:50 +00:00
|
|
|
description = "Thin wrapper over POSIX syscalls and some replacement functionality";
|
|
|
|
license = licenses.boost;
|
|
|
|
maintainers = with maintainers; [ orivej raskin ];
|
2021-05-25 16:25:37 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2010-10-25 05:52:13 +00:00
|
|
|
};
|
2015-06-25 21:11:03 +00:00
|
|
|
}
|