nix/pkgs/tessen/default.nix
2022-02-07 15:06:51 -05:00

39 lines
716 B
Nix

{ stdenv
, fetchFromGitHub
, lib
, pass
, passExtensions
, urlSupport ? true
, xdg-utils
, clipboardSupport ? true
, wl-clipboard
, notificationSupport ? true
, libnotify
, autoType ? true
, wtype
, manPageSupport ? true
, scdoc
, otpSupport ? true
, pass-otp
,
}:
stdenv.mkDerivation rec {
pname = "tessen";
version = "1.3.1";
src = fetchFromGitHub {
owner = "ayushnix";
repo = pname;
rev = "v${version}";
sha256 = "sha256-Iem4iW7yHy/p0A03P9T8S03YOG4QcGLUMu44okwPRXo=";
};
meta =
with lib;
{
description = "rofi-pass, for wayland.";
homepage = "https://github.com/ayushnix/tessen";
license = licenses.gpl2Plus;
platforms = with platforms; linux;
};
}