nixpkgs/pkgs/development/tools/build-managers/redo-sh/default.nix

32 lines
820 B
Nix
Raw Normal View History

{ stdenv, fetchurl, makeWrapper, coreutils }:
2017-03-10 21:50:05 +01:00
2019-08-13 23:52:01 +02:00
stdenv.mkDerivation {
version = "4.0.3";
pname = "redo-sh";
2017-03-10 21:50:05 +01:00
src = fetchurl {
url = "http://news.dieweltistgarnichtso.net/bin/archives/redo-sh.tar.gz";
sha256 = "1n84ld4fihqa7a6kn3f177dknz89qcvissfwz1m21bwdq950avia";
2017-03-10 21:50:05 +01:00
};
buildInputs = [ makeWrapper ];
sourceRoot = ".";
installPhase = ''
mkdir -p "$out/share"
mv man "$out/share"
mv bin "$out"
for p in $out/bin/*; do
wrapProgram "$p" --prefix PATH : "$out/bin:${coreutils}/bin"
2017-03-10 21:50:05 +01:00
done
'';
meta = with stdenv.lib; {
description = "Redo implementation in Bourne Shell";
homepage = "http://news.dieweltistgarnichtso.net/bin/redo-sh.html";
2017-03-10 21:50:05 +01:00
license = licenses.agpl3;
platforms = platforms.unix;
2017-03-10 21:50:05 +01:00
maintainers = with maintainers; [ sternenseemann ];
};
}