1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

taplo: 0.9.0 -> 0.9.3 (#338012)

This commit is contained in:
Sebastián Mancilla 2024-08-29 23:44:53 -04:00 committed by GitHub
commit 65f2eaa3e8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 8 deletions

View file

@ -4,21 +4,21 @@
, pkg-config
, openssl
, stdenv
, Security
, darwin
, withLsp ? true
}:
rustPlatform.buildRustPackage rec {
pname = "taplo";
version = "0.9.0";
version = "0.9.3";
src = fetchCrate {
inherit version;
pname = "taplo-cli";
hash = "sha256-vvb00a6rppx9kKx+pzObT/hW/IsG6RyYFEDp9M5gvqc=";
hash = "sha256-dNGQbaIfFmgXh2AOcaE74BTz7/jaiBgU7Y1pkg1rV7U=";
};
cargoHash = "sha256-oT7U9htu7J22MqLZb+YXohlB1CVGxHGQvHJu18PeLf8=";
cargoHash = "sha256-iucjewjRCunKxKCqeZwf7bdEo7+aN9hfWPwUAJhaSq0=";
nativeBuildInputs = [
pkg-config
@ -27,7 +27,8 @@ rustPlatform.buildRustPackage rec {
buildInputs = [
openssl
] ++ lib.optionals stdenv.isDarwin [
Security
darwin.apple_sdk.frameworks.Security
darwin.apple_sdk.frameworks.SystemConfiguration
];
buildFeatures = lib.optional withLsp "lsp";

View file

@ -19021,9 +19021,7 @@ with pkgs;
szyszka = callPackage ../tools/misc/szyszka { };
taplo = callPackage ../development/tools/taplo {
inherit (darwin.apple_sdk.frameworks) Security;
};
taplo = callPackage ../development/tools/taplo { };
taoup = callPackage ../tools/misc/taoup { };