biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / tmux-sessionizer / default.nix
blobe60ef9fb4c50f06548f43ea74519cf02c1d63952
1 { lib
2 , fetchFromGitHub
3 , stdenv
4 , rustPlatform
5 , openssl
6 , pkg-config
7 , Security
8 , testers
9 , tmux-sessionizer
11 let
13   name = "tmux-sessionizer";
14   version = "0.4.3";
17 rustPlatform.buildRustPackage {
18   pname = name;
19   inherit version;
21   src = fetchFromGitHub {
22     owner = "jrmoulton";
23     repo = name;
24     rev = "v${version}";
25     hash = "sha256-wwu3h2eQrim/RbxTYqt+EnFmn0uD6PQzo1Xs1qCVQ3o=";
26   };
28   cargoHash = "sha256-5OIiDz66GD3DrNKzxH+bpyweS7Ycn2IOf4f9mdHAaCo=";
30   passthru.tests.version = testers.testVersion {
31     package = tmux-sessionizer;
32     version = version;
33   };
35   # Needed to get openssl-sys to use pkg-config.
36   OPENSSL_NO_VENDOR = 1;
38   nativeBuildInputs = [ pkg-config ];
39   buildInputs = [ openssl ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ Security ];
41   meta = with lib; {
42     description = "Fastest way to manage projects as tmux sessions";
43     homepage = "https://github.com/jrmoulton/tmux-sessionizer";
44     license = licenses.mit;
45     maintainers = with maintainers; [ vinnymeller mrcjkb ];
46     mainProgram = "tms";
47   };