mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
43 lines
955 B
Nix
43 lines
955 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, stdenv
|
|
, rustPlatform
|
|
, openssl
|
|
, pkg-config
|
|
, Security
|
|
, testers
|
|
, tmux-sessionizer
|
|
}: let
|
|
|
|
name = "tmux-sessionizer";
|
|
version = "0.3.0";
|
|
|
|
in rustPlatform.buildRustPackage {
|
|
pname = name;
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jrmoulton";
|
|
repo = name;
|
|
rev = "v${version}";
|
|
hash = "sha256-ZascTDIV9MqPPtK0CHSXUW5gIk/zjRhUB0xATcu7ICM=";
|
|
};
|
|
|
|
cargoHash = "sha256-lZi72OJ+AnnLxf/zxwAERfy1oW8dE8bGF8hFwwrUXqE=";
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = tmux-sessionizer;
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ];
|
|
|
|
meta = with lib; {
|
|
description = "The fastest way to manage projects as tmux sessions";
|
|
homepage = "https://github.com/jrmoulton/tmux-sessionizer";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ vinnymeller mrcjkb ];
|
|
mainProgram = "tms";
|
|
};
|
|
}
|