nixpkgs/pkgs/tools/misc/reredirect/default.nix
2022-08-07 15:12:56 -04:00

30 lines
771 B
Nix

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "reredirect";
version = "0.3";
src = fetchFromGitHub {
owner = "jerome-pouiller";
repo = "reredirect";
rev = "v${version}";
sha256 = "sha256-RHRamDo7afnJ4DlOVAqM8lQAC60YESGSMKa8Io2vcX0=";
};
makeFlags = [ "PREFIX=${placeholder "out"}" ];
postFixup = ''
substituteInPlace ${placeholder "out"}/bin/relink \
--replace "reredirect" "${placeholder "out"}/bin/reredirect"
'';
meta = with lib; {
description = "Tool to dynamicly redirect outputs of a running process";
homepage = "https://github.com/jerome-pouiller/reredirect";
license = licenses.mit;
maintainers = [ maintainers.tobim ];
platforms = [ "i686-linux" "x86_64-linux" ];
};
}