nixpkgs/pkgs/tools/misc/pws/default.nix

34 lines
758 B
Nix
Raw Normal View History

{ stdenv, lib, bundlerEnv, ruby, bundlerUpdateScript, xsel, makeWrapper }:
2016-04-25 00:55:07 +01:00
stdenv.mkDerivation rec {
name = "pws-${(import ./gemset.nix).pws.version}";
2016-04-25 00:55:07 +01:00
env = bundlerEnv {
name = "${name}-gems";
inherit ruby;
2017-01-17 23:21:16 +00:00
gemdir = ./.;
2016-04-25 00:55:07 +01:00
};
buildInputs = [ makeWrapper ];
phases = ["installPhase"];
installPhase = ''
mkdir -p $out/bin
makeWrapper ${env}/bin/pws $out/bin/pws \
--set PATH '"${xsel}/bin/:$PATH"'
'';
passthru.updateScript = bundlerUpdateScript "pws";
2016-04-25 00:55:07 +01:00
meta = with lib; {
description = "Command-line password safe";
homepage = https://github.com/janlelis/pws;
license = licenses.mit;
maintainers = with maintainers; [ swistak35 nicknovitski ];
2016-04-25 00:55:07 +01:00
platforms = platforms.unix;
};
}