35 lines
859 B
Nix
35 lines
859 B
Nix
{ stdenv, lib, bundlerEnv, bundlerUpdateScript, makeWrapper, ruby }:
|
|
|
|
let
|
|
rubyEnv = bundlerEnv {
|
|
name = "shopify-cli";
|
|
gemdir = ./.;
|
|
};
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "shopify-cli";
|
|
version = (import ./gemset.nix).shopify-cli.version;
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
dontUnpack = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
makeWrapper ${rubyEnv}/bin/shopify $out/bin/shopify
|
|
wrapProgram $out/bin/shopify \
|
|
--prefix PATH : ${lib.makeBinPath [ ruby ]}
|
|
'';
|
|
|
|
passthru.updateScript = bundlerUpdateScript "shopify-cli";
|
|
|
|
meta = with lib; {
|
|
description = "CLI which helps you build against the Shopify platform faster";
|
|
homepage = "https://github.com/Shopify/shopify-cli";
|
|
license = licenses.mit;
|
|
platforms = ruby.meta.platforms;
|
|
maintainers = with maintainers; [ onny ];
|
|
};
|
|
}
|
|
|