nixpkgs/pkgs/development/libraries/libfixposix/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
730 B
Nix
Raw Normal View History

2021-05-25 16:25:37 +00:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, getconf }:
stdenv.mkDerivation rec {
pname = "libfixposix";
2022-11-12 11:07:13 +00:00
version="0.5.1";
2017-03-18 20:21:50 +00:00
src = fetchFromGitHub {
owner = "sionescu";
repo = "libfixposix";
rev = "v${version}";
2022-11-12 11:07:13 +00:00
sha256 = "sha256-5qA6ytbqE+/05XQGxP9/4vEs9gFcuI3k7eJJYucW7fM=";
};
2021-05-25 16:25:37 +00:00
nativeBuildInputs = [ autoreconfHook pkg-config ] ++ lib.optionals stdenv.isDarwin [ getconf ];
meta = with lib; {
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;
};
}