f1f6b462ff
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 0.4.3 with grep in /nix/store/ksrz74w4gzxb2mf8yb3f3i67i80cr93v-libfixposix-0.4.3 - directory tree listing: https://gist.github.com/ddc89b6def68fbc70c046bfdaa1c02b8
24 lines
663 B
Nix
24 lines
663 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name="libfixposix-${version}";
|
|
version="0.4.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sionescu";
|
|
repo = "libfixposix";
|
|
rev = "v${version}";
|
|
sha256 = "1x4q6yspi5g2s98vq4qszw4z3zjgk9l5zs8471w4d4cs6l97w08j";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
meta = with stdenv.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;
|
|
};
|
|
}
|