forked from mirrors/nixpkgs
Merge pull request #8060 from hiberno/rofi-pass
rofi-pass: initial commit.
This commit is contained in:
commit
58d93d158a
30
pkgs/applications/misc/rofi/pass.nix
Normal file
30
pkgs/applications/misc/rofi/pass.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ stdenv, fetchgit, rofi, wmctrl, xprop, xdotool}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "rofi-${version}";
|
||||
version = "2015-05-29";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/carnager/rofi-pass";
|
||||
rev = "92c26557ec4b0508c563d596291571bbef402899";
|
||||
sha256 = "17k9jmmckqaw75i0qsay2gc8mrjrs6jjfwfxaggspj912sflmjng";
|
||||
};
|
||||
|
||||
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._1126];
|
||||
};
|
||||
}
|
|
@ -12228,6 +12228,8 @@ let
|
|||
automake = automake114x;
|
||||
};
|
||||
|
||||
rofi-pass = callPackage ../applications/misc/rofi/pass.nix { };
|
||||
|
||||
rstudio = callPackage ../applications/editors/rstudio { };
|
||||
|
||||
rsync = callPackage ../applications/networking/sync/rsync {
|
||||
|
|
Loading…
Reference in a new issue