Add reptyr, tool to change controlling terminal of a process under Linux
This commit is contained in:
parent
a84ad8010a
commit
0013b8faa5
BIN
pkgs/os-specific/linux/reptyr/.default.nix.swp
Normal file
BIN
pkgs/os-specific/linux/reptyr/.default.nix.swp
Normal file
Binary file not shown.
17
pkgs/os-specific/linux/reptyr/default.nix
Normal file
17
pkgs/os-specific/linux/reptyr/default.nix
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{stdenv, fetchgit}:
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "0.4";
|
||||||
|
name = "reptyr-${version}";
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://github.com/nelhage/reptyr.git";
|
||||||
|
rev = "refs/tags/${name}";
|
||||||
|
sha256 = "2d2814c210e4bde6f9bcf3aa20477287d7e4a5aa7ee09110b37d2eaaf7e5ecae";
|
||||||
|
};
|
||||||
|
makeFlags = ["PREFIX=$(out)"];
|
||||||
|
meta = {
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [raskin];
|
||||||
|
license = stdenv.lib.licenses.mit;
|
||||||
|
description = ''A Linux tool to change controlling pty of a process'';
|
||||||
|
};
|
||||||
|
}
|
@ -1385,6 +1385,8 @@ let
|
|||||||
|
|
||||||
replace = callPackage ../tools/text/replace { };
|
replace = callPackage ../tools/text/replace { };
|
||||||
|
|
||||||
|
reptyr = callPackage ../os-specific/linux/reptyr {};
|
||||||
|
|
||||||
rdiff_backup = callPackage ../tools/backup/rdiff-backup { };
|
rdiff_backup = callPackage ../tools/backup/rdiff-backup { };
|
||||||
|
|
||||||
ripmime = callPackage ../tools/networking/ripmime {};
|
ripmime = callPackage ../tools/networking/ripmime {};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user