summary refs log tree commit diff
path: root/pkgs/development/web/shopify-cli/default.nix
blob: a3ec7ff3f3189eb66081bbcd86c23011f668760b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ 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 ];
  };
}