From 4ba25efc4e780b12b8e9768c297a23ddbb133e28 Mon Sep 17 00:00:00 2001 From: Vinny Meller Date: Thu, 13 Apr 2023 02:57:17 -0500 Subject: twm: init at 0.1.1 --- pkgs/tools/misc/twm/default.nix | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pkgs/tools/misc/twm/default.nix (limited to 'pkgs/tools') diff --git a/pkgs/tools/misc/twm/default.nix b/pkgs/tools/misc/twm/default.nix new file mode 100644 index 0000000000000..9109547a1d33c --- /dev/null +++ b/pkgs/tools/misc/twm/default.nix @@ -0,0 +1,32 @@ +{ lib +, fetchFromGitHub +, stdenv +, rustPlatform +, openssl +, pkg-config +, Security +}: + +rustPlatform.buildRustPackage rec { + pname = "twm"; + version = "0.1.1"; + + src = fetchFromGitHub { + owner = "vinnymeller"; + repo = pname; + rev = "v${version}"; + sha256 = "sha256-YURzNHbmGLEqNEcc4FImIqn/KcRwGdxYXM5QzM3dxbo="; + }; + + cargoHash = "sha256-sc2/eQZjY1x5KIzQ+yr8NgAMKJ6iHWwCy6fRSBp7Fw4="; + + nativeBuildInputs = [ pkg-config ]; + buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ]; + + meta = with lib; { + description = "A customizable workspace manager for tmux"; + homepage = "https://github.com/vinnymeller/twm"; + license = licenses.gpl2Only; + maintainers = with maintainers; [ vinnymeller ]; + }; +} -- cgit 1.4.1