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