mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
libfixposix: add support for darwin
This commit is contained in:
parent
2c5f7b241c
commit
8bf543af06
@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config }:
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, getconf }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libfixposix";
|
||||
@ -11,13 +11,13 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1x4q6yspi5g2s98vq4qszw4z3zjgk9l5zs8471w4d4cs6l97w08j";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||
nativeBuildInputs = [ autoreconfHook pkg-config ] ++ lib.optionals stdenv.isDarwin [ getconf ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/sionescu/libfixposix";
|
||||
description = "Thin wrapper over POSIX syscalls and some replacement functionality";
|
||||
license = licenses.boost;
|
||||
maintainers = with maintainers; [ orivej raskin ];
|
||||
platforms = platforms.linux;
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user