about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/tu/tuxmux/package.nix
blob: 9714c63696ab658f070ed9c18cd9a1970728a502 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ lib
, stdenv
, fetchFromGitHub
, rustPlatform
, openssl
, pkg-config
, installShellFiles
, darwin
}:

rustPlatform.buildRustPackage rec {
  pname = "tuxmux";
  version = "0.1.0";

  src = fetchFromGitHub {
    owner = "edeneast";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-QySDC/aEU9Fo0UbRUNvgBQLfESYzENGfS8Tl/ycn1YY=";
  };

  cargoHash = "sha256-MlLTaN+KMeF0A1hh0oujLYWqjwrbmoNzoRoXjeCUf7I=";

  buildInputs = [ openssl ] ++ (lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ]);
  nativeBuildInputs = [ pkg-config installShellFiles ];

  postInstall = ''
    installShellCompletion $releaseDir/../completions/tm.{bash,fish}
    installShellCompletion --zsh $releaseDir/../completions/_tm

    installManPage $releaseDir/../man/*
  '';

  meta = with lib; {
    description = "Tmux session manager";
    homepage = "https://github.com/edeneast/tuxmux";
    license = licenses.apsl20;
    maintainers = with maintainers; [ edeneast ];
    mainProgram = "tm";
  };
}