nixpkgs/pkgs/by-name/tm/tmux-xpanes/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
828 B
Nix
Raw Normal View History

{
lib,
stdenv,
fetchFromGitHub,
openssl,
perl,
}:
2019-04-28 19:57:05 +00:00
stdenv.mkDerivation rec {
pname = "tmux-xpanes";
2024-02-06 04:57:47 +00:00
version = "4.2.0";
2019-04-28 19:57:05 +00:00
src = fetchFromGitHub {
owner = "greymd";
repo = pname;
rev = "v${version}";
2024-02-06 04:57:47 +00:00
sha256 = "sha256-PF2K2A49c5djQqSO7ZLFyBwPZaJRK58qZTFpY7n+Z0w=";
2019-04-28 19:57:05 +00:00
};
buildInputs = [
openssl
perl
];
installPhase = ''
# Create directories.
install -m 755 -d $out/bin/
install -m 755 -d $out/share/man/man1/
# Perform installation.
install -m 755 bin/* $out/bin/
install -m 644 man/*.1 $out/share/man/man1/
'';
meta = with lib; {
2019-04-28 19:57:05 +00:00
description = "tmux-based terminal divider";
homepage = "https://github.com/greymd/tmux-xpanes";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ monsieurp ];
};
}