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

34 lines
784 B
Nix
Raw Normal View History

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