summary refs log tree commit diff
path: root/pkgs/development/php-packages/castor/default.nix
blob: ed6ce2ba33f4594f1453d7161fbc342f301d2f7a (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{ lib
, stdenv
, fetchurl
, makeBinaryWrapper
, installShellFiles
, php
, nix-update-script
, testers
, castor
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "castor";
  version = "0.8.0";


  src = fetchurl {
    url = "https://github.com/jolicode/castor/releases/download/v${finalAttrs.version}/castor.linux-amd64.phar";
    hash = "sha256-0lnn4mS1/DgUoRoMFvCjwQ0j9CX9XWlskbtX9roFCfc=";
  };

  dontUnpack = true;

  nativeBuildInputs = [ makeBinaryWrapper installShellFiles ];

  installPhase = ''
    runHook preInstall
    mkdir -p $out/bin
    install -D $src $out/libexec/castor/castor.phar
    makeWrapper ${php}/bin/php $out/bin/castor \
      --add-flags "$out/libexec/castor/castor.phar"
    runHook postInstall
  '';

  # castor requires to be initialized to generate completion files
  postInstall = ''
    echo "yes" | ${php}/bin/php $src
    installShellCompletion --cmd castor \
      --bash <($out/bin/castor completion bash) \
      --fish <($out/bin/castor completion fish) \
      --zsh <($out/bin/castor completion zsh)
  '';

  passthru = {
    updateScript = nix-update-script { };
    tests.version = testers.testVersion {
      inherit (finalAttrs) version;
      package = castor;
      command = "castor --version";
    };
  };

  meta = with lib; {
    description = "DX oriented task runner and command launcher built with PHP";
    homepage = "https://github.com/jolicode/castor";
    changelog = "https://github.com/jolicode/castor/blob/v${finalAttrs.version}/CHANGELOG.md";
    license = licenses.mit;
    maintainers = with maintainers; [ gaelreyrol ];
  };
})