nixpkgs/pkgs/development/tools/wp-cli/default.nix

53 lines
1.4 KiB
Nix
Raw Normal View History

2019-06-18 13:36:02 +00:00
{ stdenv, lib, fetchurl, writeText, php, makeWrapper }:
2016-05-22 08:51:48 +00:00
let
2021-07-01 00:26:21 +00:00
version = "2.5.0";
2016-09-13 10:20:51 +00:00
completion = fetchurl {
2020-04-02 08:33:25 +00:00
url = "https://raw.githubusercontent.com/wp-cli/wp-cli/v${version}/utils/wp-completion.bash";
2021-07-01 00:26:21 +00:00
sha256 = "sha256-RDygYQzK6NLWrOug7EqnkpuH7Wz1T2Zq/tGNZjoYo5U=";
};
2019-06-18 13:36:02 +00:00
ini = writeText "php.ini" ''
[PHP]
memory_limit = -1 ; no limit as composer uses a lot of memory
[Phar]
phar.readonly = Off
'';
2020-04-02 08:33:25 +00:00
in
stdenv.mkDerivation rec {
2019-06-18 13:36:02 +00:00
pname = "wp-cli";
2018-08-10 07:15:22 +00:00
inherit version;
2016-05-22 08:51:48 +00:00
2018-08-10 07:15:22 +00:00
src = fetchurl {
2020-04-02 08:33:25 +00:00
url = "https://github.com/wp-cli/wp-cli/releases/download/v${version}/${pname}-${version}.phar";
2021-07-01 00:26:21 +00:00
sha256 = "sha256-vghT6fRD84SFZgcIcdNE6K2B6x4V0V3PkyS0p14nJ4k=";
2018-08-10 07:15:22 +00:00
};
2016-05-22 08:51:48 +00:00
2019-06-18 13:36:02 +00:00
nativeBuildInputs = [ makeWrapper ];
2018-08-10 07:15:22 +00:00
buildCommand = ''
dir=$out/share/wp-cli
mkdir -p $out/bin $dir
2016-05-22 08:51:48 +00:00
2019-06-18 13:36:02 +00:00
install -Dm444 ${src} $dir/wp-cli
install -Dm444 ${ini} $dir/php.ini
install -Dm444 ${completion} $out/share/bash-completion/completions/wp
2018-08-10 07:15:22 +00:00
2019-06-18 13:36:02 +00:00
makeWrapper ${lib.getBin php}/bin/php $out/bin/wp \
--add-flags "-c $dir/php.ini" \
--add-flags "-f $dir/wp-cli"
# this is a very basic run test
2019-06-18 13:36:02 +00:00
$out/bin/wp --info >/dev/null
2016-05-22 08:51:48 +00:00
'';
2019-06-18 13:36:02 +00:00
meta = with lib; {
2016-05-22 08:51:48 +00:00
description = "A command line interface for WordPress";
2020-04-02 08:33:25 +00:00
homepage = "https://wp-cli.org";
license = licenses.mit;
2016-09-13 10:20:51 +00:00
maintainers = with maintainers; [ peterhoeg ];
2020-04-02 08:33:25 +00:00
platforms = platforms.all;
2016-05-22 08:51:48 +00:00
};
}