about summary refs log tree commit diff
path: root/packages/sapi/default.nix
blob: 66df5c0f036d4dcea89595f2d28804be1112b00c (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
{ 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" ];
  };
}