Merge pull request #24021 from orivej/libfixposix

libfixposix: 30b75609 -> 0.4.1

authored by Michael Raskin and committed by GitHub 776614ab 28eb6681

+12 -17
+12 -17
pkgs/development/libraries/libfixposix/default.nix
··· 1 - { stdenv, fetchurl, fetchgit, autoreconfHook, libtool }: 2 3 stdenv.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 }
··· 1 + { stdenv, fetchFromGitHub, autoreconfHook, pkgconfig }: 2 3 stdenv.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 }