rofi-pass: initial commit.
This commit is contained in:
parent
6276ebafae
commit
c04784dfd6
2 changed files with 32 additions and 0 deletions
30
pkgs/applications/misc/rofi/pass.nix
Normal file
30
pkgs/applications/misc/rofi/pass.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ stdenv, fetchgit, 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 = [ 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 = "Rofi script to work with password-store";
|
||||
homepage = https://github.com/carnager/rofi-pass;
|
||||
maintainers = [stdenv.lib.maintainers._1126];
|
||||
};
|
||||
}
|
|
@ -12067,6 +12067,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