about summary refs log tree commit diff
path: root/pkgs/development/php-packages/phing/default.nix
blob: 9c0a155ff726e6628c077629e1a6a4ce327f9675 (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
{ 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;
  };
})