10 stdenv.mkDerivation rec {
11 pname = "libeatmydata";
14 src = fetchFromGitHub {
15 owner = "stewartsmith";
18 sha256 = "sha256-0lrYDW51/KSr809whGwg9FYhzcLRfmoxipIgrK1zFCc=";
22 # https://github.com/stewartsmith/libeatmydata/pull/36
39 doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
41 enableParallelBuilding = true;
44 description = "Small LD_PRELOAD library to disable fsync and friends";
45 homepage = "https://www.flamingspork.com/projects/libeatmydata/";
46 license = licenses.gpl3Plus;
47 mainProgram = "eatmydata";
48 platforms = platforms.unix;