2016-09-21 16:12:43 +02:00
|
|
|
{ stdenv, fetchFromGitHub, pass, rofi, coreutils, utillinux, xdotool, gnugrep
|
|
|
|
, libnotify, pwgen, findutils, gawk, gnused, xclip, makeWrapper
|
|
|
|
}:
|
2015-12-04 17:22:07 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "rofi-pass-${version}";
|
2018-03-26 06:11:37 +02:00
|
|
|
version = "2.0.1";
|
2015-12-04 17:22:07 +01:00
|
|
|
|
2016-09-21 16:12:43 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "carnager";
|
|
|
|
repo = "rofi-pass";
|
|
|
|
rev = version;
|
2018-03-26 06:11:37 +02:00
|
|
|
sha256 = "1r5z9g2kc6qf9r2d7vanzdc594apf8fgyn1rh30fvxygl2976yrw";
|
2015-12-04 17:22:07 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
dontBuild = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
2016-09-17 21:20:40 +02:00
|
|
|
cp -a rofi-pass $out/bin/rofi-pass
|
2015-12-04 17:22:07 +01:00
|
|
|
|
|
|
|
mkdir -p $out/share/doc/rofi-pass/
|
2016-09-17 21:20:40 +02:00
|
|
|
cp -a config.example $out/share/doc/rofi-pass/config.example
|
2015-12-04 17:22:07 +01:00
|
|
|
'';
|
|
|
|
|
2016-04-13 14:53:51 +02:00
|
|
|
wrapperPath = with stdenv.lib; makeBinPath [
|
2015-12-04 17:22:07 +01:00
|
|
|
coreutils
|
2015-12-10 12:05:39 +01:00
|
|
|
findutils
|
2016-09-21 16:12:43 +02:00
|
|
|
gawk
|
2015-12-10 12:05:39 +01:00
|
|
|
gnugrep
|
2016-09-21 16:12:43 +02:00
|
|
|
gnused
|
|
|
|
libnotify
|
2015-12-04 17:22:07 +01:00
|
|
|
pass
|
2015-12-10 12:05:39 +01:00
|
|
|
pwgen
|
|
|
|
rofi
|
|
|
|
utillinux
|
2016-09-21 16:12:43 +02:00
|
|
|
xclip
|
2015-12-04 17:22:07 +01: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";
|
|
|
|
homepage = https://github.com/carnager/rofi-pass;
|
2017-06-14 08:32:42 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ the-kenny garbas ];
|
2015-12-04 17:22:07 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2015-12-04 17:22:07 +01:00
|
|
|
};
|
|
|
|
}
|