about summary refs log tree commit diff
path: root/packages/sapi/default.nix
blob: 8a7adbd7c0afc0919da7d154b82558830a289022 (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
{
  stdenv,
  fetchurl,
  lib,
  ...
}:

stdenv.mkDerivation rec {
  pname = "sapi";
  version = "1.2.4";
  src = fetchurl {
    url = "https://artifactory.rbx.com:443/artifactory/generic-rbx-local/sapi-cli/darwin-amd64/v${version}/sapi";
    sha256 = "sha256-Il/aqGzxtI84TdUAz4Fvw8RbAgGBZQPN3MZrOitrpVk=";
  };

  installPhase = ''
    mkdir -p $out/bin
    cp $src $out/bin/sapi
    chmod +x $out/bin/sapi
  '';

  dontUnpack = true;
  dontStrip = true;

  meta = with lib; {
    description = "sapi command-line tool";
    homepage = "https://go/sapi";
    license = licenses.unfree;
    platforms = [ "x86_64-darwin" ];
  };
}