mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
17 lines
436 B
Nix
17 lines
436 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libeatmydata-82";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.flamingspork.com/projects/libeatmydata/${name}.tar.gz";
|
|
sha256 = "0aavq71bf0yxdgyf8gvyzq086shszzwpbsz5rqkjg4cz0rc5yrqb";
|
|
};
|
|
|
|
meta = {
|
|
homepage = http://www.flamingspork.com/projects/libeatmydata/;
|
|
license = "GPLv3+";
|
|
description = "Small LD_PRELOAD library to disable fsync and friends";
|
|
};
|
|
}
|