rofi-pass: initial commit.
This commit is contained in:
parent
6276ebafae
commit
c04784dfd6
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;
|
automake = automake114x;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
rofi-pass = callPackage ../applications/misc/rofi/pass.nix { };
|
||||||
|
|
||||||
rstudio = callPackage ../applications/editors/rstudio { };
|
rstudio = callPackage ../applications/editors/rstudio { };
|
||||||
|
|
||||||
rsync = callPackage ../applications/networking/sync/rsync {
|
rsync = callPackage ../applications/networking/sync/rsync {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user