2014-01-17 19:50:35 +00:00
|
|
|
{ stdenv, fetchgit }:
|
2011-04-06 15:21:48 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libaio-0.3.109";
|
|
|
|
|
2014-01-17 19:50:35 +00:00
|
|
|
src = fetchgit {
|
|
|
|
url = https://git.fedorahosted.org/git/libaio.git;
|
|
|
|
rev = "refs/tags/${name}";
|
|
|
|
sha256 = "1wbziq0hqvnbckpxrz1cgr8dlw3mifs4xpy3qhnagbrrsmrq2rhi";
|
2011-04-06 15:21:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
makeFlags = "prefix=$(out)";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Library for asynchronous I/O in Linux";
|
|
|
|
homepage = http://lse.sourceforge.net/io/aio.html;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|