summary refs log tree commit diff
path: root/pkgs/development/tools/misc/circleci-cli/default.nix
blob: 2bd12b409f1943faedc5942d1f8830a4d3250488 (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
35
36
37
38
{ stdenv, fetchFromGitHub, docker, makeWrapper }:

stdenv.mkDerivation rec {
  name = "${pname}-${version}";
  pname = "circleci-cli";
  version = "2018-05-12";

  src = fetchFromGitHub {
    owner = "circleci";
    repo = "local-cli";
    rev = "2c7c1a74e3c3ffb8eebc03fccd782b1bfe9e940a";
    sha256 = "0fp0fz0xr7ynp32lqcmaigl9p45wk1hd2gv9i5q5bj9syj3g7qzm";
  };

  nativeBuildInputs = [ makeWrapper ];

  installPhase = ''
    mkdir -p "$out/bin/"
    cp "$src/circleci.sh" "$out/bin/circleci"
  '';

  postFixup = ''
    wrapProgram $out/bin/circleci \
      --prefix "PATH" : "${docker}/bin"
  '';

  meta = with stdenv.lib; {
    # Box blurb edited from the AUR package circleci-cli
    description = ''
      Command to enable you to reproduce the CircleCI environment locally and
      run jobs as if they were running on the hosted CirleCI application.
    '';
    maintainers = with maintainers; [ synthetica ];
    platforms = platforms.linux;
    license = licenses.mit;
    homepage = https://circleci.com/;
  };
}