summary refs log tree commit diff
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2022-10-17 13:58:22 -0400
committerGitHub <noreply@github.com>2022-10-17 13:58:22 -0400
commit87c6a9a57c4ef5fb5f5917caf05be685d4abc632 (patch)
treeb039bc5eeeadfb1f69fb16b44274253d4201bb73
parent223c8b1644e5621e5a7a5b5aae1fafa47d1b0cad (diff)
parentd0e73c7030f9bd89ec0de02a03f9c68fe6bd857b (diff)
downloadnixpkgs-87c6a9a57c4ef5fb5f5917caf05be685d4abc632.tar
nixpkgs-87c6a9a57c4ef5fb5f5917caf05be685d4abc632.tar.gz
nixpkgs-87c6a9a57c4ef5fb5f5917caf05be685d4abc632.tar.bz2
nixpkgs-87c6a9a57c4ef5fb5f5917caf05be685d4abc632.tar.lz
nixpkgs-87c6a9a57c4ef5fb5f5917caf05be685d4abc632.tar.xz
nixpkgs-87c6a9a57c4ef5fb5f5917caf05be685d4abc632.tar.zst
nixpkgs-87c6a9a57c4ef5fb5f5917caf05be685d4abc632.zip
Merge pull request #196430 from r-ryantm/auto-update/duckscript
duckscript: 0.8.15 -> 0.8.16
-rw-r--r--pkgs/development/tools/rust/duckscript/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/rust/duckscript/default.nix b/pkgs/development/tools/rust/duckscript/default.nix
index 71a45527491..43f49a28d2e 100644
--- a/pkgs/development/tools/rust/duckscript/default.nix
+++ b/pkgs/development/tools/rust/duckscript/default.nix
@@ -13,11 +13,11 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "duckscript_cli";
-  version = "0.8.15";
+  version = "0.8.16";
 
   src = fetchCrate {
     inherit pname version;
-    sha256 = "sha256-o8tbeKHdu4t0xQR+ZqUoCd6ekrSDkccFveZ2WL822nU=";
+    sha256 = "sha256-H9lZIIJrE6onqGHw0l8Y58IW9EAcQ7eCHxgqqeSLgGY=";
   };
 
   nativeBuildInputs = [ pkg-config ];
@@ -25,7 +25,7 @@ rustPlatform.buildRustPackage rec {
   buildInputs = [ openssl ]
     ++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration libiconv ];
 
-  cargoSha256 = "sha256-wIRX8n7mt6xMyJh/zwganZ9Dmr0BdtualQJW6833a40=";
+  cargoSha256 = "sha256-DQw3DDOUo4ogf6PIY7/1U0uiyX8dpXE5D2P8QDdie9M=";
 
   meta = with lib; {
     description = "Simple, extendable and embeddable scripting language.";