phpPackages.box: Move to separate directory
This commit is contained in:
parent
c665e4d12e
commit
5c8e29da49
30
pkgs/development/php-packages/box/default.nix
Normal file
30
pkgs/development/php-packages/box/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ mkDerivation, fetchurl, pkgs, lib, php }:
|
||||||
|
let
|
||||||
|
pname = "box";
|
||||||
|
version = "2.7.5";
|
||||||
|
in
|
||||||
|
mkDerivation {
|
||||||
|
inherit pname version;
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/box-project/box2/releases/download/${version}/box-${version}.phar";
|
||||||
|
sha256 = "1zmxdadrv0i2l8cz7xb38gnfmfyljpsaz2nnkjzqzksdmncbgd18";
|
||||||
|
};
|
||||||
|
|
||||||
|
phases = [ "installPhase" ];
|
||||||
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
install -D $src $out/libexec/box/box.phar
|
||||||
|
makeWrapper ${php}/bin/php $out/bin/box \
|
||||||
|
--add-flags "-d phar.readonly=0 $out/libexec/box/box.phar"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "An application for building and managing Phars";
|
||||||
|
license = licenses.mit;
|
||||||
|
homepage = "https://box-project.github.io/box2/";
|
||||||
|
maintainers = with maintainers; [ jtojnar ] ++ teams.php.members;
|
||||||
|
};
|
||||||
|
}
|
@ -23,38 +23,17 @@ let
|
|||||||
isPhp74 = pkgs.lib.versionAtLeast php.version "7.4";
|
isPhp74 = pkgs.lib.versionAtLeast php.version "7.4";
|
||||||
|
|
||||||
pcre' = if (lib.versionAtLeast php.version "7.3") then pcre2 else pcre;
|
pcre' = if (lib.versionAtLeast php.version "7.3") then pcre2 else pcre;
|
||||||
|
|
||||||
|
callPackage = pkgs.newScope {
|
||||||
|
inherit mkDerivation php isPhp73 isPhp74 buildPecl pcre';
|
||||||
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
inherit buildPecl;
|
inherit buildPecl;
|
||||||
|
|
||||||
# This is a set of interactive tools based on PHP.
|
# This is a set of interactive tools based on PHP.
|
||||||
packages = {
|
packages = {
|
||||||
box = mkDerivation rec {
|
box = callPackage ../development/php-packages/box { };
|
||||||
version = "2.7.5";
|
|
||||||
pname = "box";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "https://github.com/box-project/box2/releases/download/${version}/box-${version}.phar";
|
|
||||||
sha256 = "1zmxdadrv0i2l8cz7xb38gnfmfyljpsaz2nnkjzqzksdmncbgd18";
|
|
||||||
};
|
|
||||||
|
|
||||||
phases = [ "installPhase" ];
|
|
||||||
buildInputs = [ pkgs.makeWrapper ];
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
mkdir -p $out/bin
|
|
||||||
install -D $src $out/libexec/box/box.phar
|
|
||||||
makeWrapper ${php}/bin/php $out/bin/box \
|
|
||||||
--add-flags "-d phar.readonly=0 $out/libexec/box/box.phar"
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with pkgs.lib; {
|
|
||||||
description = "An application for building and managing Phars";
|
|
||||||
license = licenses.mit;
|
|
||||||
homepage = "https://box-project.github.io/box2/";
|
|
||||||
maintainers = with maintainers; [ jtojnar ] ++ teams.php.members;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
composer = mkDerivation rec {
|
composer = mkDerivation rec {
|
||||||
version = "1.10.13";
|
version = "1.10.13";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user