From 0c3116f1dda3e3e0e1953ff516e8320a452cc015 Mon Sep 17 00:00:00 2001 From: Soner Sayakci Date: Wed, 16 Aug 2023 20:05:20 +0200 Subject: [PATCH] shopware-cli: 0.2.1 -> 0.2.6 Diff: https://github.com/FriendsOfShopware/shopware-cli/compare/0.2.1...0.2.6 Changelog: https://github.com/FriendsOfShopware/shopware-cli/releases/tag/0.2.6 --- pkgs/tools/misc/shopware-cli/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/shopware-cli/default.nix b/pkgs/tools/misc/shopware-cli/default.nix index 7d1c29c956f2..b553ab269d7c 100644 --- a/pkgs/tools/misc/shopware-cli/default.nix +++ b/pkgs/tools/misc/shopware-cli/default.nix @@ -4,21 +4,23 @@ , installShellFiles , makeWrapper , dart-sass +, git }: buildGoModule rec { pname = "shopware-cli"; - version = "0.2.1"; + version = "0.2.6"; src = fetchFromGitHub { repo = "shopware-cli"; owner = "FriendsOfShopware"; rev = version; - hash = "sha256-3upZmqsKCg98j/HTwFp0L7MMspCw7Dj6dRoyEPW287k="; + hash = "sha256-Ut/SKdnaJM4B6jXXcRS6UJ1qCEgnZy977qlZbH8S6qU="; }; nativeBuildInputs = [ installShellFiles makeWrapper ]; + nativeCheckInputs = [ git ]; - vendorHash = "sha256-KEWACwZka4WMQS4/O6WkIdeeUnxtcpEwQmMlNBLUjbI="; + vendorHash = "sha256-luA+tSePY8V+BQBTykv236mq4z3wQjLrjeYH2KQ0Mrc="; postInstall = '' export HOME="$(mktemp -d)"