nixpkgs/pkgs/tools/security/pass/rofi-pass.nix

58 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, pass, rofi, coreutils, utillinux, xdotool, gnugrep
, libnotify, pwgen, findutils, gawk, gnused, xclip, makeWrapper
}:
stdenv.mkDerivation rec {
name = "rofi-pass-${version}";
2017-09-10 11:28:15 +03:00
version = "1.5.1";
src = fetchFromGitHub {
owner = "carnager";
repo = "rofi-pass";
rev = version;
2017-09-10 11:28:15 +03:00
sha256 = "1qv1yphfy2zmiibc92kq1m0k8plal5wcb6jymc3ks2wrl4v98iy4";
};
buildInputs = [ makeWrapper ];
dontBuild = true;
installPhase = ''
mkdir -p $out/bin
2016-09-17 22:20:40 +03:00
cp -a rofi-pass $out/bin/rofi-pass
mkdir -p $out/share/doc/rofi-pass/
2016-09-17 22:20:40 +03:00
cp -a config.example $out/share/doc/rofi-pass/config.example
'';
wrapperPath = with stdenv.lib; makeBinPath [
coreutils
2015-12-10 14:05:39 +03:00
findutils
gawk
2015-12-10 14:05:39 +03:00
gnugrep
gnused
libnotify
pass
2015-12-10 14:05:39 +03:00
pwgen
rofi
utillinux
xclip
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 09:32:42 +03:00
maintainers = with stdenv.lib.maintainers; [ the-kenny garbas ];
license = stdenv.lib.licenses.gpl3;
platforms = with stdenv.lib.platforms; linux;
};
}