Unverified Commit 247b5e22 authored by Jonas Heinrich's avatar Jonas Heinrich Committed by GitHub
Browse files

Merge pull request #225980 from vinnymeller/twm

twm: init at 0.1.1
parents 2f34ced3 4ba25efc
Loading
Loading
Loading
Loading
+32 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+4 −0
Original line number Diff line number Diff line
@@ -13025,6 +13025,10 @@ with pkgs;
  ttylog = callPackage ../tools/misc/ttylog { };
  twm = callPackage ../tools/misc/twm {
    inherit (darwin.apple_sdk.frameworks) Security;
  };
  txtpbfmt = callPackage ../development/tools/txtpbfmt { };
  ipbt = callPackage ../tools/misc/ipbt { };