1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 21:21:06 +00:00

* Added libaio.

svn path=/nixpkgs/trunk/; revision=26715
This commit is contained in:
Eelco Dolstra 2011-04-06 14:21:48 +00:00
parent 17fdaf6a7e
commit 26eca10459
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libaio-0.3.109";
src = fetchurl {
url = "mirror://kernel/linux/libs/aio/${name}.tar.bz2";
sha256 = "15772ki2wckf2mj4gm1vhrsmpd6rq20983nhlkfghjfblghgrkmm";
};
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;
};
}

View file

@ -4867,6 +4867,8 @@ let
kbd = callPackage ../os-specific/linux/kbd { };
libaio = callPackage ../os-specific/linux/libaio { };
libcgroup = callPackage ../os-specific/linux/libcg { };
libnl = callPackage ../os-specific/linux/libnl { };