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

58 lines
1.3 KiB
Nix
Raw Normal View History

2017-08-16 00:39:22 +00:00
{ stdenv, lib, fetchurl, writeScript, writeText, php }:
2016-05-22 08:51:48 +00:00
let
2018-09-06 13:35:56 +00:00
version = "2.0.1";
2016-09-13 10:20:51 +00:00
completion = fetchurl {
url = "https://raw.githubusercontent.com/wp-cli/wp-cli/v${version}/utils/wp-completion.bash";
sha256 = "15d330x6d3fizrm6ckzmdknqg6wjlx5fr87bmkbd5s6a1ihs0g24";
};
2018-08-10 07:15:22 +00:00
in stdenv.mkDerivation rec {
name = "wp-cli-${version}";
inherit version;
2016-05-22 08:51:48 +00:00
2018-08-10 07:15:22 +00:00
src = fetchurl {
url = "https://github.com/wp-cli/wp-cli/releases/download/v${version}/${name}.phar";
2018-09-06 13:35:56 +00:00
sha256 = "05lbay4c0477465vv4h8d2j94pk3haz1a7f0ncb127fvxz3a2pcg";
2018-08-10 07:15:22 +00:00
};
2016-05-22 08:51:48 +00:00
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
2018-08-10 07:15:22 +00:00
cat <<_EOF > $out/bin/wp
#!${stdenv.shell}
2018-08-10 07:15:22 +00:00
set -euo pipefail
2017-08-16 00:39:22 +00:00
2018-08-10 07:15:22 +00:00
exec ${lib.getBin php}/bin/php \\
-c $dir/php.ini \\
-f $dir/wp-cli -- "\$@"
_EOF
chmod 0755 $out/bin/wp
2017-08-16 00:39:22 +00:00
2018-08-10 07:15:22 +00:00
cat <<_EOF > $dir/php.ini
[PHP]
memory_limit = -1 ; no limit as composer uses a lot of memory
[Phar]
phar.readonly = Off
_EOF
install -Dm644 ${src} $dir/wp-cli
install -Dm644 ${completion} $out/share/bash-completion/completions/wp
# this is a very basic run test
$out/bin/wp --info
2016-05-22 08:51:48 +00:00
'';
2016-09-13 10:20:51 +00:00
meta = with stdenv.lib; {
2016-05-22 08:51:48 +00:00
description = "A command line interface for WordPress";
2017-08-16 00:39:22 +00:00
homepage = https://wp-cli.org;
license = licenses.mit;
2016-09-13 10:20:51 +00:00
maintainers = with maintainers; [ peterhoeg ];
2017-08-16 00:39:22 +00:00
platforms = platforms.all;
2016-05-22 08:51:48 +00:00
};
}