figsoda 2022-12-16 23:58:37 -05:00
parent 0bc7a95fbc
commit 762806dfef
2 changed files with 6 additions and 10 deletions

View file

@ -2,26 +2,24 @@
, rustPlatform
, fetchFromGitHub
, stdenv
, CoreServices
, Security
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "ruff";
version = "0.0.184";
version = "0.0.185";
src = fetchFromGitHub {
owner = "charliermarsh";
repo = pname;
rev = "v${version}";
sha256 = "sha256-hXft1YQIqfo8jioCrlo35LRjN7Th0DprzHmKWRt403k=";
sha256 = "sha256-L2NaBvSFy+x8mLxy7r0EQUKT4FE5JHaDkVjGiJ7HzTw=";
};
cargoSha256 = "sha256-nwhOoP6MT3JMQJJKpYLApxa9Z4/s7nQEoQNHLfHcDUs=";
cargoSha256 = "sha256-/L9xgSG9ydGbjth6tBkqnuIAu7UqP+0IAX8izW1ZAkg=";
buildInputs = lib.optionals stdenv.isDarwin [
CoreServices
Security
darwin.apple_sdk.frameworks.CoreServices
];
meta = with lib; {

View file

@ -37150,9 +37150,7 @@ with pkgs;
rucksack = callPackage ../development/tools/rucksack { };
ruff = callPackage ../development/tools/ruff {
inherit (darwin.apple_sdk.frameworks) CoreServices Security;
};
ruff = callPackage ../development/tools/ruff { };
sam-ba = callPackage ../tools/misc/sam-ba { };