1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
8 owner = "jerome-pouiller";
11 sha256 = "sha256-RHRamDo7afnJ4DlOVAqM8lQAC60YESGSMKa8Io2vcX0=";
14 makeFlags = [ "PREFIX=${placeholder "out"}" ];
17 substituteInPlace ${placeholder "out"}/bin/relink \
18 --replace "reredirect" "${placeholder "out"}/bin/reredirect"
22 description = "Tool to dynamicly redirect outputs of a running process";
23 homepage = "https://github.com/jerome-pouiller/reredirect";
24 license = licenses.mit;
25 maintainers = [ maintainers.tobim ];
26 platforms = [ "i686-linux" "x86_64-linux" ];