mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
36 lines
947 B
Nix
36 lines
947 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.3.113";
|
|
pname = "libaio";
|
|
|
|
src = fetchurl {
|
|
url = "https://pagure.io/libaio/archive/${pname}-${version}/${pname}-${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-cWxwWXAyRzROsGa1TsvDyiE08BAzBxkubCt9q1+VKKs=";
|
|
};
|
|
|
|
postPatch = ''
|
|
patchShebangs harness
|
|
|
|
# Makefile is too optimistic, gcc is too smart
|
|
substituteInPlace harness/Makefile \
|
|
--replace "-Werror" ""
|
|
'';
|
|
|
|
makeFlags = [
|
|
"prefix=${placeholder "out"}"
|
|
] ++ lib.optional stdenv.hostPlatform.isStatic "ENABLE_SHARED=0";
|
|
|
|
hardeningDisable = lib.optional (stdenv.hostPlatform.isi686) "stackprotector";
|
|
|
|
checkTarget = "partcheck"; # "check" needs root
|
|
|
|
meta = {
|
|
description = "Library for asynchronous I/O in Linux";
|
|
homepage = "https://lse.sourceforge.net/io/aio.html";
|
|
platforms = lib.platforms.linux;
|
|
license = lib.licenses.lgpl21;
|
|
maintainers = [ ];
|
|
};
|
|
}
|