depot/third_party/nixpkgs/pkgs/development/libraries/libeatmydata/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

49 lines
934 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, strace
, which
}:
stdenv.mkDerivation rec {
pname = "libeatmydata";
version = "131";
src = fetchFromGitHub {
owner = "stewartsmith";
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "sha256-0lrYDW51/KSr809whGwg9FYhzcLRfmoxipIgrK1zFCc=";
};
patches = [
# https://github.com/stewartsmith/libeatmydata/pull/36
./LFS64.patch
];
postPatch = ''
patchShebangs .
'';
nativeBuildInputs = [
autoreconfHook
];
nativeCheckInputs = [
strace
which
];
doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
enableParallelBuilding = true;
meta = with lib; {
description = "Small LD_PRELOAD library to disable fsync and friends";
homepage = "https://www.flamingspork.com/projects/libeatmydata/";
license = licenses.gpl3Plus;
mainProgram = "eatmydata";
platforms = platforms.unix;
};
}