Skip to content

Commit b6b1e97

Browse files
authored
pest-ide-tools: remove openssl dependency & MIT license (#320064)
* pest-ide-tools: remove openssl dependency openssl was dropped in favor of rustls in 0.3.9 pest-parser/pest-ide-tools@7d6d1ef * pest-ide-tools: remove erroneous MIT license Despite the common practise among rustaceans to use a dual Apache-2.0/MIT license, `pest-ide-tools` has only ever been licensed under Apache-2.0 https://github.com/pest-parser/pest-ide-tools/commits/v0.3.11/LICENSE
1 parent 779a848 commit b6b1e97

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

pkgs/development/tools/misc/pest-ide-tools/default.nix

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
, fetchFromGitHub
44
, rustPlatform
55
, nix-update-script
6-
, pkg-config
7-
, openssl
86
, darwin
97
}:
108

@@ -19,10 +17,7 @@ rustPlatform.buildRustPackage rec {
1917
rev = "v${version}";
2018
sha256 = "sha256-12/FndzUbUlgcYcwMT1OfamSKgy2q+CvtGyx5YY4IFQ=";
2119
};
22-
nativeBuildInputs = [ pkg-config ];
23-
buildInputs = [
24-
openssl
25-
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
20+
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
2621
darwin.apple_sdk.frameworks.Security
2722
];
2823

@@ -33,7 +28,7 @@ rustPlatform.buildRustPackage rec {
3328
meta = with lib; {
3429
description = "IDE support for Pest, via the LSP";
3530
homepage = "https://pest.rs";
36-
license = with licenses; [ mit asl20 ];
31+
license = with licenses; [ asl20 ];
3732
maintainers = with maintainers; [ nickhu ];
3833
mainProgram = "pest-language-server";
3934
};

0 commit comments

Comments
 (0)