11 stdenv.mkDerivation rec {
13 version = "0-unstable-2022-02-22";
15 src = fetchFromGitHub {
18 rev = "f5a0fd8848b5c87b301edc8a23de9bfcfbd41918";
19 hash = "sha256-BaOaMpsF8ho8EIVuHfu4+CiVV3yLoC3tDkLq4R8BYBA=";
22 propagatedBuildInputs = [ mpi mpich reptyr tmux ];
24 nativeBuildInputs = [ makeWrapper ];
31 install -m755 tmpi $out/bin/tmpi
33 wrapProgram $out/bin/tmpi \
34 --prefix PATH : ${lib.makeBinPath [ mpi mpich tmux reptyr ]}
40 description = "Run a parallel command inside a split tmux window";
42 homepage = "https://github.com/Azrael3000/tmpi";
43 license = lib.licenses.gpl2;
44 maintainers = with lib.maintainers; [ vasissualiyp ];
45 platforms = reptyr.meta.platforms;