libfixposix: 30b75609 -> 0.4.1

This commit is contained in:
Orivej Desh 2017-03-18 20:21:50 +00:00
parent dd49357a19
commit d992619de2

View File

@ -1,28 +1,23 @@
{ stdenv, fetchurl, fetchgit, autoreconfHook, libtool }: { stdenv, fetchFromGitHub, autoreconfHook, pkgconfig }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name="libfixposix-${version}"; name="libfixposix-${version}";
version="git-${src.rev}"; version="0.4.1";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/sionescu/libfixposix"; owner = "sionescu";
rev = "30b75609d858588ea00b427015940351896867e9"; repo = "libfixposix";
sha256 = "17spjz9vbgqllzlkws2abvqi0a71smhi4vgq3913aw0kq206mfxz"; rev = "v${version}";
sha256 = "19wjb43mn16f4lin5a2dfi3ym2hy7kqibs0z631d205b16vxas15";
}; };
buildInputs = [ autoreconfHook libtool ]; nativeBuildInputs = [ autoreconfHook pkgconfig ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A set of workarounds for places in POSIX that get implemented differently"; homepage = https://github.com/sionescu/libfixposix;
maintainers = with maintainers; description = "Thin wrapper over POSIX syscalls and some replacement functionality";
[ license = licenses.boost;
raskin maintainers = with maintainers; [ orivej raskin ];
];
platforms = platforms.linux; platforms = platforms.linux;
}; };
passthru = {
updateInfo = {
downloadPage = "http://gitorious.org/libfixposix/libfixposix";
};
};
} }