Merge pull request #86289 from peterhoeg/f/libeatmydata

libeatmydata: allow building from checkout
This commit is contained in:
Peter Hoeg 2020-04-29 17:44:01 +08:00 committed by GitHub
commit 8f43c55598
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,23 +1,41 @@
{ stdenv, fetchurl, makeWrapper }: { stdenv, fetchFromGitHub, autoreconfHook, strace, which }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "libeatmydata-105"; pname = "libeatmydata";
version = "105";
src = fetchurl { src = fetchFromGitHub {
url = "https://www.flamingspork.com/projects/libeatmydata/${name}.tar.gz"; owner = "stewartsmith";
sha256 = "1pd8sc73cgc41ldsvq6g8ics1m5k8gdcb91as9yg8z5jnrld1lmx"; repo = pname;
rev = "${pname}-${version}";
sha256 = "0sx803h46i81h67xbpd3c7ky0nhaw4gij214nsx4lqig70223v9r";
}; };
patches = [ ./find-shell-lib.patch ]; patches = [ ./find-shell-lib.patch ];
patchFlags = "-p0"; patchFlags = "-p0";
postPatch = '' postPatch = ''
substituteInPlace eatmydata.in --replace NIX_OUT_DIR $out substituteInPlace eatmydata.in \
--replace NIX_OUT_DIR $out
patchShebangs .
''; '';
meta = { nativeBuildInputs = [
homepage = "https://www.flamingspork.com/projects/libeatmydata/"; autoreconfHook
license = stdenv.lib.licenses.gpl3Plus; ] ++ stdenv.lib.optionals doCheck [ strace which ];
# while we can *build* in parallel, the tests also run in parallel which does
# not work with v105. Later versions (unreleased) have a fix for that. The
# problem is that on hydra we cannot use strace, so the tests don't run there.
enableParallelBuilding = true;
doCheck = false;
meta = with stdenv.lib; {
description = "Small LD_PRELOAD library to disable fsync and friends"; description = "Small LD_PRELOAD library to disable fsync and friends";
platforms = stdenv.lib.platforms.unix; homepage = "https://www.flamingspork.com/projects/libeatmydata/";
license = licenses.gpl3Plus;
platforms = platforms.unix;
}; };
} }