summary refs log tree commit diff
path: root/pkgs/development/libraries/libeatmydata
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2013-02-10 00:08:29 +0100
committerLluís Batlle i Rossell <viric@viric.name>2013-02-10 00:08:29 +0100
commit3c9386e19f7e0016afcc2a1fad90bcc3b44069e1 (patch)
tree260c0909d51a2e95e9cbfd4bf9ad66763339bc61 /pkgs/development/libraries/libeatmydata
parentf1b54f8ee2cb7c3b08972e6d5d6010e7a203edca (diff)
downloadnixpkgs-3c9386e19f7e0016afcc2a1fad90bcc3b44069e1.tar
nixpkgs-3c9386e19f7e0016afcc2a1fad90bcc3b44069e1.tar.gz
nixpkgs-3c9386e19f7e0016afcc2a1fad90bcc3b44069e1.tar.bz2
nixpkgs-3c9386e19f7e0016afcc2a1fad90bcc3b44069e1.tar.lz
nixpkgs-3c9386e19f7e0016afcc2a1fad90bcc3b44069e1.tar.xz
nixpkgs-3c9386e19f7e0016afcc2a1fad90bcc3b44069e1.tar.zst
nixpkgs-3c9386e19f7e0016afcc2a1fad90bcc3b44069e1.zip
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.
Diffstat (limited to 'pkgs/development/libraries/libeatmydata')
-rw-r--r--pkgs/development/libraries/libeatmydata/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libeatmydata/default.nix b/pkgs/development/libraries/libeatmydata/default.nix
new file mode 100644
index 00000000000..48a0423653d
--- /dev/null
+++ b/pkgs/development/libraries/libeatmydata/default.nix
@@ -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";
+  };
+}