mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-07 14:23:19 +00:00
66 lines
1.2 KiB
Nix
66 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, pass-wayland
|
|
, coreutils
|
|
, gnugrep
|
|
, libnotify
|
|
, pwgen
|
|
, findutils
|
|
, makeWrapper
|
|
, wl-clipboard
|
|
, wtype
|
|
, wofi
|
|
, extensions ? exts: []
|
|
}:
|
|
|
|
let
|
|
wrapperPath = lib.makeBinPath [
|
|
coreutils
|
|
findutils
|
|
gnugrep
|
|
libnotify
|
|
pwgen
|
|
wofi
|
|
wl-clipboard
|
|
wtype
|
|
(pass-wayland.withExtensions extensions)
|
|
];
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "wofi-pass";
|
|
version = "23.1.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "schmidtandreas";
|
|
repo = "wofi-pass";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Ycu1NFHoglJdOzGuJ7yfmDo1+f+FMPkpQXJuz6nvtig=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
install -Dm755 wofi-pass -t $out/bin
|
|
install -Dm755 wofi-pass.conf -t $out/share/doc/wofi-pass/wofi-pass.conf
|
|
'';
|
|
|
|
fixupPhase = ''
|
|
patchShebangs $out/bin
|
|
|
|
wrapProgram $out/bin/wofi-pass \
|
|
--prefix PATH : "${wrapperPath}"
|
|
'';
|
|
|
|
meta = {
|
|
description = "A script to make wofi work with password-store";
|
|
homepage = "https://github.com/schmidtandreas/wofi-pass";
|
|
maintainers = with lib.maintainers; [ akechishiro ];
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = with lib.platforms; linux;
|
|
mainProgram = "wofi-pass";
|
|
};
|
|
}
|