1 { lib, stdenv, fetchurl, makeWrapper, coreutils }:
8 url = "http://news.dieweltistgarnichtso.net/bin/archives/redo-sh.tar.gz";
9 sha256 = "0d3hz3vy5qmjr9r4f8a5cx9hikpzs8h8f0fsl3dpbialf4wck24g";
12 nativeBuildInputs = [ makeWrapper ];
19 for p in $out/bin/*; do
20 wrapProgram "$p" --prefix PATH : "$out/bin:${coreutils}/bin"
25 description = "Redo implementation in Bourne Shell";
26 homepage = "http://news.dieweltistgarnichtso.net/bin/redo-sh.html";
27 license = licenses.agpl3Plus;
28 platforms = platforms.unix;
29 maintainers = with maintainers; [ sternenseemann ];