2016-09-21 15:12:43 +01:00
|
|
|
{ stdenv, fetchFromGitHub, pass, rofi, coreutils, utillinux, xdotool, gnugrep
|
|
|
|
, libnotify, pwgen, findutils, gawk, gnused, xclip, makeWrapper
|
|
|
|
}:
|
2015-12-04 16:22:07 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "rofi-pass";
|
2019-02-15 12:54:24 +00:00
|
|
|
version = "2.0.2";
|
2015-12-04 16:22:07 +00:00
|
|
|
|
2016-09-21 15:12:43 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "carnager";
|
|
|
|
repo = "rofi-pass";
|
|
|
|
rev = version;
|
2019-02-15 12:54:24 +00:00
|
|
|
sha256 = "131jpcwyyzgzjn9lx4k1zn95pd68pjw4i41jfzcp9z9fnazyln5n";
|
2015-12-04 16:22:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
dontBuild = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
2016-09-17 20:20:40 +01:00
|
|
|
cp -a rofi-pass $out/bin/rofi-pass
|
2015-12-04 16:22:07 +00:00
|
|
|
|
|
|
|
mkdir -p $out/share/doc/rofi-pass/
|
2016-09-17 20:20:40 +01:00
|
|
|
cp -a config.example $out/share/doc/rofi-pass/config.example
|
2015-12-04 16:22:07 +00:00
|
|
|
'';
|
|
|
|
|
2016-04-13 13:53:51 +01:00
|
|
|
wrapperPath = with stdenv.lib; makeBinPath [
|
2015-12-04 16:22:07 +00:00
|
|
|
coreutils
|
2015-12-10 11:05:39 +00:00
|
|
|
findutils
|
2016-09-21 15:12:43 +01:00
|
|
|
gawk
|
2015-12-10 11:05:39 +00:00
|
|
|
gnugrep
|
2016-09-21 15:12:43 +01:00
|
|
|
gnused
|
|
|
|
libnotify
|
2019-05-29 15:05:21 +01:00
|
|
|
(pass.withExtensions (ext: [ ext.pass-otp ]))
|
2015-12-10 11:05:39 +00:00
|
|
|
pwgen
|
|
|
|
rofi
|
|
|
|
utillinux
|
2016-09-21 15:12:43 +01:00
|
|
|
xclip
|
2015-12-04 16:22:07 +00:00
|
|
|
xdotool
|
|
|
|
];
|
|
|
|
|
|
|
|
fixupPhase = ''
|
|
|
|
patchShebangs $out/bin
|
|
|
|
|
|
|
|
wrapProgram $out/bin/rofi-pass \
|
|
|
|
--prefix PATH : "${wrapperPath}"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A script to make rofi work with password-store";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/carnager/rofi-pass";
|
2019-07-03 10:27:39 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
|
2015-12-04 16:22:07 +00:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2015-12-04 16:22:07 +00:00
|
|
|
};
|
|
|
|
}
|