libaio: update to 0.3.110

This commit is contained in:
Mateusz Kowalczyk 2014-08-29 13:45:04 +01:00
parent dfeba56c0e
commit badb705a5c

View File

@ -1,12 +1,12 @@
{ stdenv, fetchgit }: { stdenv, fetchurl }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "libaio-0.3.109"; version = "0.3.110";
name = "libaio-${version}";
src = fetchgit { src = fetchurl {
url = https://git.fedorahosted.org/git/libaio.git; url = "https://fedorahosted.org/releases/l/i/libaio/${name}.tar.gz";
rev = "refs/tags/${name}"; sha256 = "0zjzfkwd1kdvq6zpawhzisv7qbq1ffs343i5fs9p498pcf7046g0";
sha256 = "1wbziq0hqvnbckpxrz1cgr8dlw3mifs4xpy3qhnagbrrsmrq2rhi";
}; };
makeFlags = "prefix=$(out)"; makeFlags = "prefix=$(out)";
@ -15,5 +15,7 @@ stdenv.mkDerivation rec {
description = "Library for asynchronous I/O in Linux"; description = "Library for asynchronous I/O in Linux";
homepage = http://lse.sourceforge.net/io/aio.html; homepage = http://lse.sourceforge.net/io/aio.html;
platforms = stdenv.lib.platforms.linux; platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.lgpl21;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
}; };
} }