about summary refs log tree commit diff
path: root/pkgs/development/php-packages/phing/default.nix
blob: dfda99220f9b0a806e92edcfe8d162cb35e56939 (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
{
  lib,
  fetchFromGitHub,
  php,
}:

(php.withExtensions ({ enabled, all }: enabled ++ (with all; [ xsl ]))).buildComposerProject
  (finalAttrs: {
    pname = "phing";
    version = "3.0.0-rc6";

    src = fetchFromGitHub {
      owner = "phingofficial";
      repo = "phing";
      rev = finalAttrs.version;
      hash = "sha256-pOt6uQaz69WuHKYZhq6FFbjyHGrEc+Bf0Sw9uCS3Nrc=";
    };

    # TODO: Open a PR against https://github.com/phingofficial/phing
    # Their `composer.lock` is out of date therefore, we need to provide one
    composerLock = ./composer.lock;
    vendorHash = "sha256-ueTbbz3FGyRcRvlcJNirHdC77Tko4RKtYMFB3+4JdnQ=";

    meta = {
      description = "PHing Is Not GNU make; it's a PHP project build system or build tool based on Apache Ant";
      homepage = "https://github.com/phingofficial/phing";
      license = lib.licenses.lgpl3;
      mainProgram = "phing";
      maintainers = lib.teams.php.members;
    };
  })