2019-12-05 19:36:00 -08:00
|
|
|
{ stdenv, lib, fetchFromGitHub, fetchpatch, python2 }:
|
2014-02-19 13:04:59 -08:00
|
|
|
|
2012-10-03 22:17:09 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2018-12-04 20:18:09 -08:00
|
|
|
version = "0.7.0";
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "reptyr";
|
2018-12-04 20:18:09 -08:00
|
|
|
|
2018-10-08 04:13:44 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nelhage";
|
|
|
|
repo = "reptyr";
|
|
|
|
rev = "reptyr-${version}";
|
2018-12-04 20:18:09 -08:00
|
|
|
sha256 = "1hnijfz1ab34j2h2cxc3f43rmbclyihgn9x9wxa7jqqgb2xm71hj";
|
2012-10-03 22:17:09 -07:00
|
|
|
};
|
2017-02-22 07:54:19 -08:00
|
|
|
|
2019-12-05 19:36:00 -08:00
|
|
|
patches = [
|
|
|
|
# Fix tests hanging
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/nelhage/reptyr/commit/bca3070ac0f3888b5d37ee162505be81b3b496ff.patch";
|
|
|
|
sha256 = "0w6rpv9k4a80q0ijzdq5hlpr37ncr284piqjv5agy8diniwlilab";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-12-04 20:18:09 -08:00
|
|
|
makeFlags = [ "PREFIX=" "DESTDIR=$(out)" ];
|
2017-02-22 07:54:19 -08:00
|
|
|
|
2018-12-04 20:18:09 -08:00
|
|
|
checkInputs = [ (python2.withPackages (p: [ p.pexpect ])) ];
|
|
|
|
doCheck = true;
|
2017-11-16 09:48:50 -08:00
|
|
|
|
2012-10-03 22:17:09 -07:00
|
|
|
meta = {
|
2018-11-29 16:45:31 -08:00
|
|
|
platforms = [
|
|
|
|
"i686-linux"
|
|
|
|
"x86_64-linux"
|
|
|
|
"i686-freebsd"
|
|
|
|
"x86_64-freebsd"
|
2018-12-04 20:18:09 -08:00
|
|
|
"armv5tel-linux"
|
|
|
|
"armv6l-linux"
|
|
|
|
"armv7l-linux"
|
|
|
|
"aarch64-linux"
|
|
|
|
];
|
2018-11-29 16:45:31 -08:00
|
|
|
maintainers = with lib.maintainers; [raskin];
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
description = "Reparent a running program to a new terminal";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/nelhage/reptyr";
|
2012-10-03 22:17:09 -07:00
|
|
|
};
|
|
|
|
}
|