From 512038331168b8f15e16f371bc2d0e0a964c29b2 Mon Sep 17 00:00:00 2001 From: linsui Date: Wed, 8 Jun 2022 10:17:47 +0800 Subject: [PATCH] dotter: 0.12.10 -> 0.12.11 --- pkgs/tools/misc/dotter/default.nix | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/misc/dotter/default.nix b/pkgs/tools/misc/dotter/default.nix index 67401b4d85b8..a160fb8b1c58 100644 --- a/pkgs/tools/misc/dotter/default.nix +++ b/pkgs/tools/misc/dotter/default.nix @@ -1,17 +1,24 @@ -{ lib, stdenv, fetchFromGitHub, rustPlatform, CoreServices, which }: +{ lib +, stdenv +, fetchpatch +, fetchFromGitHub +, rustPlatform +, CoreServices +, which +}: rustPlatform.buildRustPackage rec { pname = "dotter"; - version = "0.12.10"; + version = "0.12.11"; src = fetchFromGitHub { owner = "SuperCuber"; repo = "dotter"; rev = "v${version}"; - hash = "sha256-uSM7M//3LHzdLSOruTyu46sp1a6LeodT2cCEFsuoPW4="; + hash = "sha256-7K0p20FqaYFzOmUAeq1ousAPCeqE4AZoARF3UY4p4bY="; }; - cargoHash = "sha256-JpMEC2HjAQLQiXHSE6L0HBDc0vLhd465wDK2+35aBXA="; + cargoHash = "sha256-BN6cdRmhvMjYQlaEa840+syuVKKUQ59TPMKicm40MTk="; buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ];