mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 16:45:49 +01:00
Merge pull request #170065 from shyim/add-platformsh-misc
platformsh: init at v3.78.0
This commit is contained in:
commit
d37df25455
2 changed files with 52 additions and 0 deletions
50
pkgs/misc/platformsh/default.nix
Normal file
50
pkgs/misc/platformsh/default.nix
Normal file
|
@ -0,0 +1,50 @@
|
|||
{ stdenv, fetchurl, makeWrapper, writeShellScript, lib, php, curl, jq, common-updater-scripts }:
|
||||
|
||||
let
|
||||
pname = "platformsh";
|
||||
version = "v3.78.0";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
inherit pname version;
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/platformsh/platformsh-cli/releases/download/${version}/platform.phar";
|
||||
sha256 = "sha256-2EasMsZIwplkl1S5PH0Y3gRymAIdpiFgVc3pNPiFg1o=";
|
||||
};
|
||||
|
||||
dontUnpack = true;
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
mkdir -p $out/bin
|
||||
install -D $src $out/libexec/platformsh/platform.phar
|
||||
makeWrapper ${php}/bin/php $out/bin/platform \
|
||||
--add-flags "$out/libexec/platformsh/platform.phar"
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
passthru = {
|
||||
updateScript = writeShellScript "update-${pname}" ''
|
||||
set -o errexit
|
||||
export PATH="${lib.makeBinPath [ curl jq common-updater-scripts ]}"
|
||||
NEW_VERSION=$(curl -s https://api.github.com/repos/platformsh/platformsh-cli/releases/latest | jq .tag_name --raw-output)
|
||||
|
||||
if [[ "${version}" = "$NEW_VERSION" ]]; then
|
||||
echo "The new version same as the old version."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
update-source-version "platformsh" "$NEW_VERSION"
|
||||
'';
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "The unified tool for managing your Platform.sh services from the command line.";
|
||||
license = licenses.mit;
|
||||
homepage = "https://github.com/platformsh/platformsh-cli";
|
||||
maintainers = with maintainers; [ shyim ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -2339,6 +2339,8 @@ with pkgs;
|
|||
|
||||
passExtensions = recurseIntoAttrs pass.extensions;
|
||||
|
||||
platformsh = callPackage ../misc/platformsh { };
|
||||
|
||||
inherd-quake = callPackage ../applications/misc/inherd-quake {
|
||||
inherit (darwin.apple_sdk.frameworks) CoreServices Security;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue