rofi-pass: 1.2 -> 1.3.1
Also contains fixes so it doesn't depend on anything in PATH.
This commit is contained in:
parent
97ad628344
commit
e9e6d62c59
@ -1,30 +0,0 @@
|
||||
{ stdenv, fetchgit, rofi, wmctrl, xprop, xdotool}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "rofi-pass-${version}";
|
||||
version = "1.2";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/carnager/rofi-pass";
|
||||
rev = "refs/tags/${version}";
|
||||
sha256 = "1dlaplr18qady5g8sp8xgiqdw81mfx9iisihf8appr5s4sjm559h";
|
||||
};
|
||||
|
||||
buildInputs = [ rofi wmctrl xprop xdotool ];
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp -a $src/rofi-pass $out/bin/rofi-pass
|
||||
|
||||
mkdir -p $out/share/doc/rofi-pass/
|
||||
cp -a $src/config.example $out/share/doc/rofi-pass/config.example
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "A script to make rofi work with password-store";
|
||||
homepage = https://github.com/carnager/rofi-pass;
|
||||
maintainers = [stdenv.lib.maintainers.hiberno];
|
||||
};
|
||||
}
|
49
pkgs/tools/security/pass/rofi-pass.nix
Normal file
49
pkgs/tools/security/pass/rofi-pass.nix
Normal file
@ -0,0 +1,49 @@
|
||||
{ stdenv, fetchgit
|
||||
, pass, rofi, coreutils, utillinux, xdotool, gnugrep
|
||||
, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "rofi-pass-${version}";
|
||||
version = "1.3.1";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/carnager/rofi-pass";
|
||||
rev = "refs/tags/${version}";
|
||||
sha256 = "1r206fq96avhlgkf2fzf8j2a25dav0s945qv66hwvqwhxq74frrv";
|
||||
};
|
||||
|
||||
buildInputs = [ makeWrapper ];
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp -a $src/rofi-pass $out/bin/rofi-pass
|
||||
|
||||
mkdir -p $out/share/doc/rofi-pass/
|
||||
cp -a $src/config.example $out/share/doc/rofi-pass/config.example
|
||||
'';
|
||||
|
||||
wrapperPath = with stdenv.lib; makeSearchPath "bin/" [
|
||||
coreutils
|
||||
utillinux
|
||||
rofi
|
||||
pass
|
||||
xdotool
|
||||
gnugrep
|
||||
];
|
||||
|
||||
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;
|
||||
maintainers = with stdenv.lib.maintainers; [ hiberno the-kenny ];
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
};
|
||||
}
|
@ -12884,7 +12884,7 @@ let
|
||||
automake = automake114x;
|
||||
};
|
||||
|
||||
rofi-pass = callPackage ../applications/misc/rofi/pass.nix { };
|
||||
rofi-pass = callPackage ../tools/security/pass/rofi-pass.nix { };
|
||||
|
||||
rstudio = callPackage ../applications/editors/rstudio { };
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user