nixpkgs/pkgs/tools/misc/reredirect/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
771 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2019-06-08 19:00:37 +03:00
stdenv.mkDerivation rec {
pname = "reredirect";
2022-08-07 16:06:18 +03:00
version = "0.3";
2019-06-08 19:00:37 +03:00
src = fetchFromGitHub {
owner = "jerome-pouiller";
repo = "reredirect";
rev = "v${version}";
2022-08-07 16:06:18 +03:00
sha256 = "sha256-RHRamDo7afnJ4DlOVAqM8lQAC60YESGSMKa8Io2vcX0=";
2019-06-08 19:00:37 +03:00
};
makeFlags = [ "PREFIX=${placeholder "out"}" ];
postFixup = ''
substituteInPlace ${placeholder "out"}/bin/relink \
--replace "reredirect" "${placeholder "out"}/bin/reredirect"
'';
meta = with lib; {
2019-06-08 19:00:37 +03:00
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" ];
};
}