lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 17.09-beta 23 lines 663 B view raw
1{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig }: 2 3stdenv.mkDerivation rec { 4 name="libfixposix-${version}"; 5 version="0.4.1"; 6 7 src = fetchFromGitHub { 8 owner = "sionescu"; 9 repo = "libfixposix"; 10 rev = "v${version}"; 11 sha256 = "19wjb43mn16f4lin5a2dfi3ym2hy7kqibs0z631d205b16vxas15"; 12 }; 13 14 nativeBuildInputs = [ autoreconfHook pkgconfig ]; 15 16 meta = with stdenv.lib; { 17 homepage = https://github.com/sionescu/libfixposix; 18 description = "Thin wrapper over POSIX syscalls and some replacement functionality"; 19 license = licenses.boost; 20 maintainers = with maintainers; [ orivej raskin ]; 21 platforms = platforms.linux; 22 }; 23}