From fce4c512bb143a881a4110604868fa56ffaf18c0 Mon Sep 17 00:00:00 2001 From: figsoda Date: Fri, 11 Aug 2023 17:47:10 -0400 Subject: [PATCH] rustywind: 0.17.0 -> 0.18.0 Diff: https://github.com/avencera/rustywind/compare/v0.17.0...v0.18.0 Changelog: https://github.com/avencera/rustywind/blob/v0.18.0/CHANGELOG.md --- pkgs/development/tools/misc/rustywind/default.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/misc/rustywind/default.nix b/pkgs/development/tools/misc/rustywind/default.nix index d3ac55b13111..56f6447b1056 100644 --- a/pkgs/development/tools/misc/rustywind/default.nix +++ b/pkgs/development/tools/misc/rustywind/default.nix @@ -1,20 +1,26 @@ { lib , rustPlatform , fetchFromGitHub +, stdenv +, darwin }: rustPlatform.buildRustPackage rec { pname = "rustywind"; - version = "0.17.0"; + version = "0.18.0"; src = fetchFromGitHub { owner = "avencera"; repo = "rustywind"; rev = "v${version}"; - hash = "sha256-cRQdPOiERvxBZzaS26op1bDba9sCn3TyBIhlwI5XCro="; + hash = "sha256-rItLlyYUQODFazdVhCdAQgrrF8K2Cjuhyt5pvRyhSro="; }; - cargoHash = "sha256-hw9DUe4iJ0DLX4P48ZpvZr6Xmq5rQ5rGmT13fO5uRoY="; + cargoHash = "sha256-sY4gXzMn7LTpJ/22BNKbmlHUbEx/CqS2+wa8DfLr/Fw="; + + buildInputs = lib.optionals stdenv.isDarwin [ + darwin.apple_sdk.frameworks.Security + ]; meta = with lib; { description = "CLI for organizing Tailwind CSS classes";