mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
reredirect: init at 0.2
This commit is contained in:
parent
b0bbacb521
commit
3617fdf73b
2 changed files with 31 additions and 0 deletions
29
pkgs/tools/misc/reredirect/default.nix
Normal file
29
pkgs/tools/misc/reredirect/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "reredirect";
|
||||
version = "0.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jerome-pouiller";
|
||||
repo = "reredirect";
|
||||
rev = "v${version}";
|
||||
sha256 = "0aqzs940kwvw80lhkszx8spcdh9ilsx5ncl9vnp611hwlryfw7kk";
|
||||
};
|
||||
|
||||
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
||||
|
||||
postFixup = ''
|
||||
substituteInPlace ${placeholder "out"}/bin/relink \
|
||||
--replace "reredirect" "${placeholder "out"}/bin/reredirect"
|
||||
'';
|
||||
|
||||
meta = with stdenv.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" ];
|
||||
};
|
||||
}
|
||||
|
|
@ -5984,6 +5984,8 @@ in
|
|||
|
||||
redsocks = callPackage ../tools/networking/redsocks { };
|
||||
|
||||
reredirect = callPackage ../tools/misc/reredirect { };
|
||||
|
||||
retext = libsForQt5.callPackage ../applications/editors/retext { };
|
||||
|
||||
richgo = callPackage ../development/tools/richgo { };
|
||||
|
|
Loading…
Reference in a new issue