Remove explicit darwin framework and keep libiconv.

rev -> tag
This commit is contained in:
Guy Chronister
2025-04-15 08:43:48 +02:00
committed by Yaya
parent 43d7b8048b
commit 91b71e3961
+1 -3
View File
@@ -4,7 +4,6 @@
fetchFromGitHub,
rustPlatform,
libiconv,
Security,
}:
rustPlatform.buildRustPackage rec {
@@ -14,7 +13,7 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "dalance";
repo = pname;
rev = "v${version}";
tag = "v${version}";
sha256 = "sha256-q0o2PQngbDLumck27V0bIiB35zesn55Y+MwK2GjNVWo=";
};
@@ -23,7 +22,6 @@ rustPlatform.buildRustPackage rec {
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
libiconv
Security
];
meta = with lib; {