reptyr: enable on 32-bit ARM Linux and x86 FreeBSD

This commit is contained in:
Ben Wolsieffer 2018-11-29 19:45:31 -05:00 committed by Austin Seipp
parent 2c5f92a723
commit a47479ec7e

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub }:
{ stdenv, lib, fetchFromGitHub }:
stdenv.mkDerivation rec {
version = "0.6.2";
@ -20,9 +20,14 @@ stdenv.mkDerivation rec {
makeFlags = ["PREFIX=$(out)"];
meta = {
platforms = [ "i686-linux" "x86_64-linux" ];
maintainers = with stdenv.lib.maintainers; [raskin];
license = stdenv.lib.licenses.mit;
description = ''A Linux tool to change controlling pty of a process'';
platforms = [
"i686-linux"
"x86_64-linux"
"i686-freebsd"
"x86_64-freebsd"
] ++ lib.platforms.arm;
maintainers = with lib.maintainers; [raskin];
license = lib.licenses.mit;
description = "Reparent a running program to a new terminal";
};
}