lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.09-beta 24 lines 643 B view raw
1{ stdenv, fetchurl, makeWrapper }: 2 3stdenv.mkDerivation rec { 4 name = "libeatmydata-105"; 5 6 src = fetchurl { 7 url = "https://www.flamingspork.com/projects/libeatmydata/${name}.tar.gz"; 8 sha256 = "1pd8sc73cgc41ldsvq6g8ics1m5k8gdcb91as9yg8z5jnrld1lmx"; 9 }; 10 11 buildInputs = [ makeWrapper ]; 12 13 postInstall = '' 14 wrapProgram $out/bin/eatmydata \ 15 --prefix PATH : $out/bin 16 ''; 17 18 meta = { 19 homepage = https://www.flamingspork.com/projects/libeatmydata/; 20 license = stdenv.lib.licenses.gpl3Plus; 21 description = "Small LD_PRELOAD library to disable fsync and friends"; 22 platforms = stdenv.lib.platforms.unix; 23 }; 24}