From ffd99e79b3c05b4ff5a0a5d09657c87c6eb16a3b Mon Sep 17 00:00:00 2001 From: Mon Aaraj Date: Fri, 26 Aug 2022 06:29:58 +0300 Subject: tessen: init at unstable-2022-08-04 --- pkgs/tools/security/tessen/default.nix | 49 ++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 pkgs/tools/security/tessen/default.nix (limited to 'pkgs/tools/security/tessen') diff --git a/pkgs/tools/security/tessen/default.nix b/pkgs/tools/security/tessen/default.nix new file mode 100644 index 0000000000000..3e3a165c05bf2 --- /dev/null +++ b/pkgs/tools/security/tessen/default.nix @@ -0,0 +1,49 @@ +{ lib +, stdenvNoCC +, fetchFromSourcehut +, makeWrapper +, installShellFiles +, wtype +, wl-clipboard +, pass +, bemenu +}: + +stdenvNoCC.mkDerivation rec { + pname = "tessen"; + version = "unstable-2022-08-04"; + + src = fetchFromSourcehut { + owner = "~ayushnix"; + repo = pname; + rev = "8758a09345f6eef24764de4a0efad737f12562c8"; + sha256 = "sha256-U6obXpYzIprOJ+b3QiE+eDOq1s0DYiwM55qTga9/8TE="; + }; + + nativeBuildInputs = [ makeWrapper installShellFiles ]; + + dontBuild = true; + + installPhase = '' + runHook preInstall + install -D tessen $out/bin/tessen + wrapProgram $out/bin/tessen --prefix PATH : ${ lib.makeBinPath [ bemenu pass wtype wl-clipboard ] } + runHook postInstall + ''; + + postInstall = '' + installManPage man/* + installShellCompletion --cmd tessen \ + --bash completion/tessen.bash-completion \ + --fish completion/tessen.fish-completion + install -Dm644 config $out/share/tessen/config + ''; + + meta = with lib; { + homepage = "https://sr.ht/~ayushnix/tessen"; + description = "An interactive menu to autotype and copy Pass and GoPass data"; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ monaaraj ]; + }; +} -- cgit 1.4.1