lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

wp-cli: 1.5.1 -> 2.0.0

+3 -5
+3 -5
pkgs/development/tools/wp-cli/default.nix
··· 2 2 3 3 let 4 4 name = "wp-cli-${version}"; 5 - version = "1.5.1"; 5 + version = "2.0.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/wp-cli/wp-cli/releases/download/v${version}/${name}.phar"; 9 - sha256 = "1lnjbl6rcv32g6akj4552ncyqmbsawmx1dnbmxr0rjj7wr8484f1"; 9 + sha256 = "1s8pv8vdjwiwknpwsxc59l1zxc2np7nrp6bjd0s8jwsrv5fgjzsp"; 10 10 }; 11 11 12 12 completion = fetchurl { ··· 36 36 inherit name version; 37 37 38 38 buildCommand = '' 39 - mkdir -p $out/{bin,share/bash-completion/completions} 40 - 41 - ln -s ${bin} $out/bin/wp 39 + install -Dm755 ${bin} $out/bin/wp 42 40 install -Dm644 ${completion} $out/share/bash-completion/completions/wp 43 41 44 42 # this is a very basic run test