Merge pull request #259686 from r-ryantm/auto-update/darklua

darklua: 0.10.2 -> 0.10.3

authored by

Ryan Mulligan and committed by
GitHub
a12a3714 4befebc9

+10 -3
+10 -3
pkgs/development/tools/darklua/default.nix
··· 1 { lib 2 , rustPlatform 3 , fetchFromGitHub 4 }: 5 6 rustPlatform.buildRustPackage rec { 7 pname = "darklua"; 8 - version = "0.10.2"; 9 10 src = fetchFromGitHub { 11 owner = "seaofvoices"; 12 repo = "darklua"; 13 rev = "v${version}"; 14 - hash = "sha256-lZKf+05+qpQe21tMclYYUB9QBI6lC0vhNtsM4O3Jde4="; 15 }; 16 17 - cargoHash = "sha256-NnMjvi1H3VQGtklzXKPnZX1dOq3kCSiW8MnSvymtZ68="; 18 19 # error: linker `aarch64-linux-gnu-gcc` not found 20 postPatch = ''
··· 1 { lib 2 + , stdenv 3 + , darwin 4 , rustPlatform 5 , fetchFromGitHub 6 }: 7 8 rustPlatform.buildRustPackage rec { 9 pname = "darklua"; 10 + version = "0.10.3"; 11 12 src = fetchFromGitHub { 13 owner = "seaofvoices"; 14 repo = "darklua"; 15 rev = "v${version}"; 16 + hash = "sha256-OgQOsc6upMJveUUJSGqvopsyoKs7ALd6pVYxCi5fmS8="; 17 }; 18 19 + cargoHash = "sha256-qq42K4cPrWu/92P4dpegZ/0Wv2ndCb5d5+DgEKzdhbw="; 20 + 21 + buildInputs = lib.optionals stdenv.isDarwin [ 22 + darwin.apple_sdk.frameworks.CoreServices 23 + ]; 24 + 25 26 # error: linker `aarch64-linux-gnu-gcc` not found 27 postPatch = ''