Merge pull request #293414 from paholg/taplo-0.9.0
taplo: 0.8.1 -> 0.9.0
This commit is contained in:
commit
11464dff27
@ -1,6 +1,8 @@
|
|||||||
{ lib
|
{ lib
|
||||||
, rustPlatform
|
, rustPlatform
|
||||||
, fetchCrate
|
, fetchCrate
|
||||||
|
, pkg-config
|
||||||
|
, openssl
|
||||||
, stdenv
|
, stdenv
|
||||||
, Security
|
, Security
|
||||||
, withLsp ? true
|
, withLsp ? true
|
||||||
@ -8,17 +10,25 @@
|
|||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "taplo";
|
pname = "taplo";
|
||||||
version = "0.8.1";
|
version = "0.9.0";
|
||||||
|
|
||||||
src = fetchCrate {
|
src = fetchCrate {
|
||||||
inherit version;
|
inherit version;
|
||||||
pname = "taplo-cli";
|
pname = "taplo-cli";
|
||||||
sha256 = "sha256-evNW6OA7rArj0TvOaQgktcQy0tWnel3ZL+ic78e6lOk=";
|
hash = "sha256-vvb00a6rppx9kKx+pzObT/hW/IsG6RyYFEDp9M5gvqc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoSha256 = "sha256-jeLjoqEieR96mUZQmQtv7P78lmOaF18ruVhZLi/TieQ=";
|
cargoHash = "sha256-oT7U9htu7J22MqLZb+YXohlB1CVGxHGQvHJu18PeLf8=";
|
||||||
|
|
||||||
buildInputs = lib.optional stdenv.isDarwin Security;
|
nativeBuildInputs = [
|
||||||
|
pkg-config
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
openssl
|
||||||
|
] ++ lib.optionals stdenv.isDarwin [
|
||||||
|
Security
|
||||||
|
];
|
||||||
|
|
||||||
buildFeatures = lib.optional withLsp "lsp";
|
buildFeatures = lib.optional withLsp "lsp";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user