nixpkgs/pkgs/os-specific/linux/libaio/default.nix

41 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch }:
stdenv.mkDerivation rec {
2014-08-29 14:45:04 +02:00
version = "0.3.110";
pname = "libaio";
2014-08-29 14:45:04 +02:00
src = fetchurl {
url = "https://fedorahosted.org/releases/l/i/libaio/${pname}-${version}.tar.gz";
2014-08-29 14:45:04 +02:00
sha256 = "0zjzfkwd1kdvq6zpawhzisv7qbq1ffs343i5fs9p498pcf7046g0";
};
patches = [ (fetchpatch {
url = "https://pagure.io/libaio/c/da47c32b2ff39e52fbed1622c34b86bc88d7c217.patch";
sha256 = "1kqpiswjn549s3w3m89bw5qkl7bw5pvq6gp5cdzd926ymlgivj5c";
}) ];
2018-08-08 23:20:15 +02:00
postPatch = ''
patchShebangs harness
# Makefile is too optimistic, gcc is too smart
substituteInPlace harness/Makefile \
--replace "-Werror" ""
'';
2019-10-26 17:39:27 +02:00
makeFlags = [
"prefix=${placeholder ''out''}"
];
hardeningDisable = stdenv.lib.optional (stdenv.isi686) "stackprotector";
2018-08-08 23:20:15 +02: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 14:45:04 +02:00
license = stdenv.lib.licenses.lgpl21;
maintainers = with stdenv.lib.maintainers; [ ];
};
}