1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Adding libeatmydata.

It doesn't run very well with our symlinks in PATH, but I don't know what
patch can make it work still. This is better than nothing; calling it
with its full path makes it work.
This commit is contained in:
Lluís Batlle i Rossell 2013-02-10 00:08:29 +01:00
parent f1b54f8ee2
commit 3c9386e19f
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libeatmydata-65";
src = fetchurl {
url = "http://www.flamingspork.com/projects/libeatmydata/${name}.tar.gz";
sha256 = "1hfmd24ps5661zbbw1qqgqs6hcwx6ll2fxz2j4cfvkmf0kzw25la";
};
meta = {
homepage = http://www.flamingspork.com/projects/libeatmydata/;
license = "GPLv3+";
description = "Small LD_PRELOAD library to disable fsync and friends";
};
}

View file

@ -4204,6 +4204,8 @@ let
libdwarf = callPackage ../development/libraries/libdwarf { };
libeatmydata = callPackage ../development/libraries/libeatmydata { };
libebml = callPackage ../development/libraries/libebml { };
libedit = callPackage ../development/libraries/libedit { };