lol
0
fork

Configure Feed

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

at 16.09-beta 28 lines 732 B view raw
1{ stdenv, fetchurl, fetchgit, autoreconfHook, libtool }: 2 3stdenv.mkDerivation rec { 4 name="libfixposix-${version}"; 5 version="git-${src.rev}"; 6 7 src = fetchgit { 8 url = "https://github.com/sionescu/libfixposix"; 9 rev = "30b75609d858588ea00b427015940351896867e9"; 10 sha256 = "17spjz9vbgqllzlkws2abvqi0a71smhi4vgq3913aw0kq206mfxz"; 11 }; 12 13 buildInputs = [ autoreconfHook libtool ]; 14 15 meta = with stdenv.lib; { 16 description = "A set of workarounds for places in POSIX that get implemented differently"; 17 maintainers = with maintainers; 18 [ 19 raskin 20 ]; 21 platforms = platforms.linux; 22 }; 23 passthru = { 24 updateInfo = { 25 downloadPage = "http://gitorious.org/libfixposix/libfixposix"; 26 }; 27 }; 28}