2018-12-05 04:18:09 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, python2 }:
|
2014-02-19 21:04:59 +00:00
|
|
|
|
2012-10-04 06:17:09 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-12-05 04:18:09 +00:00
|
|
|
version = "0.7.0";
|
2012-10-04 06:17:09 +01:00
|
|
|
name = "reptyr-${version}";
|
2018-12-05 04:18:09 +00:00
|
|
|
|
2018-10-08 12:13:44 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nelhage";
|
|
|
|
repo = "reptyr";
|
|
|
|
rev = "reptyr-${version}";
|
2018-12-05 04:18:09 +00:00
|
|
|
sha256 = "1hnijfz1ab34j2h2cxc3f43rmbclyihgn9x9wxa7jqqgb2xm71hj";
|
2012-10-04 06:17:09 +01:00
|
|
|
};
|
2017-02-22 15:54:19 +00:00
|
|
|
|
2018-12-05 04:18:09 +00:00
|
|
|
makeFlags = [ "PREFIX=" "DESTDIR=$(out)" ];
|
2017-02-22 15:54:19 +00:00
|
|
|
|
2018-12-05 04:18:09 +00:00
|
|
|
checkInputs = [ (python2.withPackages (p: [ p.pexpect ])) ];
|
|
|
|
doCheck = true;
|
2017-11-16 17:48:50 +00:00
|
|
|
|
2012-10-04 06:17:09 +01:00
|
|
|
meta = {
|
2018-11-30 00:45:31 +00:00
|
|
|
platforms = [
|
|
|
|
"i686-linux"
|
|
|
|
"x86_64-linux"
|
|
|
|
"i686-freebsd"
|
|
|
|
"x86_64-freebsd"
|
2018-12-05 04:18:09 +00:00
|
|
|
"armv5tel-linux"
|
|
|
|
"armv6l-linux"
|
|
|
|
"armv7l-linux"
|
|
|
|
"aarch64-linux"
|
|
|
|
];
|
2018-11-30 00:45:31 +00:00
|
|
|
maintainers = with lib.maintainers; [raskin];
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
description = "Reparent a running program to a new terminal";
|
2018-11-30 16:44:05 +00:00
|
|
|
homepage = https://github.com/nelhage/reptyr;
|
2012-10-04 06:17:09 +01:00
|
|
|
};
|
|
|
|
}
|