mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
35abe070ee
Instead of imposing an arbitrary memory limit via php.ini, let wp-cli use as much as possible. If you need to limit the memory use, there are mechanisms in your OS far better suited for this.
56 lines
1.3 KiB
Nix
56 lines
1.3 KiB
Nix
{ stdenv, lib, fetchurl, writeScript, writeText, php }:
|
|
|
|
let
|
|
name = "wp-cli-${version}";
|
|
version = "1.4.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/wp-cli/wp-cli/releases/download/v${version}/${name}.phar";
|
|
sha256 = "0fyfwpsbm9s3khxq8876ah85vjwfd5r4a59aix3zjmhq2v7j8n9j";
|
|
};
|
|
|
|
completion = fetchurl {
|
|
url = "https://raw.githubusercontent.com/wp-cli/wp-cli/v${version}/utils/wp-completion.bash";
|
|
sha256 = "15d330x6d3fizrm6ckzmdknqg6wjlx5fr87bmkbd5s6a1ihs0g24";
|
|
};
|
|
|
|
bin = writeScript "wp" ''
|
|
#! ${stdenv.shell}
|
|
|
|
set -euo pipefail
|
|
|
|
exec ${lib.getBin php}/bin/php \
|
|
-c ${ini} \
|
|
-f ${src} -- "$@"
|
|
'';
|
|
|
|
ini = writeText "wp-cli.ini" ''
|
|
[PHP]
|
|
memory_limit = -1 ; composer uses a lot of memory
|
|
|
|
[Phar]
|
|
phar.readonly = Off
|
|
'';
|
|
|
|
in stdenv.mkDerivation rec {
|
|
inherit name version;
|
|
|
|
buildCommand = ''
|
|
mkdir -p $out/{bin,share/bash-completion/completions}
|
|
|
|
ln -s ${bin} $out/bin/wp
|
|
install -Dm644 ${completion} $out/share/bash-completion/completions/wp
|
|
|
|
# this is a very basic run test
|
|
$out/bin/wp --info
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A command line interface for WordPress";
|
|
homepage = https://wp-cli.org;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|