summary refs log tree commit diff
path: root/pkgs/os-specific/linux/libaio/default.nix
blob: 57137400b2fec7bd5e5f48eaad65c35a6df415af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
  };
}