3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/os-specific/linux/libaio/default.nix

36 lines
930 B
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch }:
stdenv.mkDerivation rec {
version = "0.3.111";
pname = "libaio";
2014-08-29 13:45:04 +01:00
src = fetchurl {
url = "https://pagure.io/libaio/archive/${pname}-${version}/${pname}-${pname}-${version}.tar.gz";
sha256 = "1fih2y2js0dl9qshpyb14m0nnxlms2527shgcxg0hnbflv5igg76";
};
2018-08-08 22:20:15 +01:00
postPatch = ''
patchShebangs harness
# Makefile is too optimistic, gcc is too smart
substituteInPlace harness/Makefile \
--replace "-Werror" ""
'';
2019-10-26 16:39:27 +01:00
makeFlags = [
"prefix=${placeholder ''out''}"
];
hardeningDisable = stdenv.lib.optional (stdenv.isi686) "stackprotector";
2018-08-08 22:20:15 +01:00
checkTarget = "partcheck"; # "check" needs root
meta = {
description = "Library for asynchronous I/O in Linux";
homepage = "http://lse.sourceforge.net/io/aio.html";
platforms = stdenv.lib.platforms.linux;
2014-08-29 13:45:04 +01:00
license = stdenv.lib.licenses.lgpl21;
maintainers = with stdenv.lib.maintainers; [ ];
};
}