summary refs log tree commit diff
path: root/pkgs/development/tools/rust/cargo-modules/default.nix
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-01-07 16:44:45 -0500
committerfigsoda <figsoda@pm.me>2023-01-07 16:44:45 -0500
commitdc9ff73d2b33fe904a70d79dc9e72132e1064315 (patch)
tree01f8291024ee18f5e741d27bf3715f88426abca7 /pkgs/development/tools/rust/cargo-modules/default.nix
parent3c3d6bedf040a42096959502b9a608568e105149 (diff)
cargo-modules: 0.7.2 -> 0.7.3
Diff: https://github.com/regexident/cargo-modules/compare/0.7.2...0.7.3

Changelog: https://github.com/regexident/cargo-modules/blob/0.7.3/CHANGELOG.md
Diffstat (limited to 'pkgs/development/tools/rust/cargo-modules/default.nix')
-rw-r--r--pkgs/development/tools/rust/cargo-modules/default.nix17
1 files changed, 4 insertions, 13 deletions
diff --git a/pkgs/development/tools/rust/cargo-modules/default.nix b/pkgs/development/tools/rust/cargo-modules/default.nix
index 54290e2491f4c..060b710f8f7f9 100644
--- a/pkgs/development/tools/rust/cargo-modules/default.nix
+++ b/pkgs/development/tools/rust/cargo-modules/default.nix
@@ -1,26 +1,17 @@
-{ lib, rustPlatform, fetchFromGitHub, fetchpatch, stdenv, darwin }:
+{ lib, rustPlatform, fetchFromGitHub, stdenv, darwin }:
 
 rustPlatform.buildRustPackage rec {
   pname = "cargo-modules";
-  version = "0.7.2";
+  version = "0.7.3";
 
   src = fetchFromGitHub {
     owner = "regexident";
     repo = pname;
     rev = version;
-    sha256 = "sha256-QRBhlSHqOTJCdzZhqpcfLeCDuCfJsjyxa2+6yzzN52g=";
+    sha256 = "sha256-xjAjm23hzuyvxU0S7m9AsfvXui/jb0oFrAqcY8m9Cq0=";
   };
 
-  cargoSha256 = "sha256-+asFAkUOHP9u/nOoHsr81KeqQkLqaRXhJH32oTG5vYo=";
-
-  cargoPatches = [
-    # https://github.com/regexident/cargo-modules/pull/161;
-    (fetchpatch {
-      name = "update-outdated-lock-file.patsh";
-      url = "https://github.com/regexident/cargo-modules/commit/ea9029b79acdadddbaf4067076690153c38cd09c.patch";
-      sha256 = "sha256-DOLvo/PP+4/6i1IYbl9oGC6BAnXNI88hK5he9549EJk=";
-    })
-  ];
+  cargoSha256 = "sha256-XU4kNP0xODuY5I16zLZeQqpxS37HJI67YF3enB/5N+s=";
 
   buildInputs = lib.optionals stdenv.isDarwin [
     darwin.apple_sdk.frameworks.CoreServices