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

52 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, php }:
2016-05-22 10:51:48 +02:00
let
2017-06-02 15:00:43 +02:00
version = "1.2.0";
2016-09-13 12:20:51 +02:00
bin = "bin/wp";
ini = "etc/php/wp-cli.ini";
phar = "share/wp-cli/wp-cli.phar";
2016-05-22 10:51:48 +02:00
completion = fetchurl {
url = "https://raw.githubusercontent.com/wp-cli/wp-cli/v${version}/utils/wp-completion.bash";
sha256 = "15d330x6d3fizrm6ckzmdknqg6wjlx5fr87bmkbd5s6a1ihs0g24";
};
in stdenv.mkDerivation rec {
name = "wp-cli-${version}";
2016-05-22 10:51:48 +02:00
src = fetchurl {
url = "https://github.com/wp-cli/wp-cli/releases/download/v${version}/${name}.phar";
2017-06-02 15:00:43 +02:00
sha256 = "1v51230gpw3ghz8vp3s1ykrwnmka9gj0r7xjad79bc9y250vr920";
2016-05-22 10:51:48 +02:00
};
buildCommand = ''
mkdir -p $out/bin $out/etc/php
2016-09-13 12:20:51 +02:00
cat <<_EOF > $out/${bin}
#! ${stdenv.shell} -eu
exec ${lib.getBin php}/bin/php \\
-c $out/${ini} \\
-f $out/${phar} "\$@"
_EOF
chmod 755 $out/${bin}
2016-05-22 10:51:48 +02:00
cat <<_EOF > $out/${ini}
[Phar]
phar.readonly = Off
_EOF
chmod 644 $out/${ini}
install -Dm644 ${src} $out/${phar}
install -Dm644 ${completion} $out/share/bash-completion/completions/wp
2016-05-22 10:51:48 +02:00
'';
2016-09-13 12:20:51 +02:00
meta = with stdenv.lib; {
2016-05-22 10:51:48 +02:00
description = "A command line interface for WordPress";
2016-09-13 12:20:51 +02:00
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.all;
2016-05-22 10:51:48 +02:00
homepage = https://wp-cli.org;
2016-09-13 12:20:51 +02:00
license = licenses.mit;
2016-05-22 10:51:48 +02:00
};
}