1 { lib, stdenv, fetchFromGitHub, openssl, perl }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "sha256-PF2K2A49c5djQqSO7ZLFyBwPZaJRK58qZTFpY7n+Z0w=";
14 buildInputs = [ openssl perl ];
18 install -m 755 -d $out/bin/
19 install -m 755 -d $out/share/man/man1/
21 # Perform installation.
22 install -m 755 bin/* $out/bin/
23 install -m 644 man/*.1 $out/share/man/man1/
27 description = "tmux-based terminal divider";
28 homepage = "https://github.com/greymd/tmux-xpanes";
29 license = licenses.mit;
30 platforms = platforms.unix;
31 maintainers = with maintainers; [ monsieurp ];