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:
parent
17fdaf6a7e
commit
26eca10459
18
pkgs/os-specific/linux/libaio/default.nix
Normal file
18
pkgs/os-specific/linux/libaio/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue