Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 656b59e3db7a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a278414b32ad
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Sep 6, 2018

  1. Copy the full SHA
    0378139 View commit details
  2. wp-cli: 2.0.0 -> 2.0.1

    peterhoeg committed Sep 6, 2018
    Copy the full SHA
    a278414 View commit details
Showing with 28 additions and 24 deletions.
  1. +28 −24 pkgs/development/tools/wp-cli/default.nix
52 changes: 28 additions & 24 deletions pkgs/development/tools/wp-cli/default.nix
Original file line number Diff line number Diff line change
@@ -1,42 +1,46 @@
{ stdenv, lib, fetchurl, writeScript, writeText, php }:

let
name = "wp-cli-${version}";
version = "2.0.0";

src = fetchurl {
url = "https://github.com/wp-cli/wp-cli/releases/download/v${version}/${name}.phar";
sha256 = "1s8pv8vdjwiwknpwsxc59l1zxc2np7nrp6bjd0s8jwsrv5fgjzsp";
};
version = "2.0.1";

completion = fetchurl {
url = "https://raw.githubusercontent.com/wp-cli/wp-cli/v${version}/utils/wp-completion.bash";
sha256 = "15d330x6d3fizrm6ckzmdknqg6wjlx5fr87bmkbd5s6a1ihs0g24";
};

bin = writeScript "wp" ''
#! ${stdenv.shell}
in stdenv.mkDerivation rec {
name = "wp-cli-${version}";
inherit version;

set -euo pipefail
src = fetchurl {
url = "https://github.com/wp-cli/wp-cli/releases/download/v${version}/${name}.phar";
sha256 = "05lbay4c0477465vv4h8d2j94pk3haz1a7f0ncb127fvxz3a2pcg";
};

exec ${lib.getBin php}/bin/php \
-c ${ini} \
-f ${src} -- "$@"
'';
buildCommand = ''
dir=$out/share/wp-cli
mkdir -p $out/bin $dir
ini = writeText "wp-cli.ini" ''
[PHP]
memory_limit = -1 ; no limit as composer uses a lot of memory
cat <<_EOF > $out/bin/wp
#!${stdenv.shell}
[Phar]
phar.readonly = Off
'';
set -euo pipefail
in stdenv.mkDerivation rec {
inherit name version;
exec ${lib.getBin php}/bin/php \\
-c $dir/php.ini \\
-f $dir/wp-cli -- "\$@"
_EOF
chmod 0755 $out/bin/wp
buildCommand = ''
install -Dm755 ${bin} $out/bin/wp
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