grex: 1.4.0 -> 1.4.1

This commit is contained in:
Sandro Jäckel 2022-10-21 23:50:54 +02:00
parent bfb6a63a43
commit 17b4f3cc0a
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,23 +1,21 @@
{ lib, stdenv
, fetchFromGitHub
, fetchpatch
, rustPlatform
, Security
, libiconv
}:
rustPlatform.buildRustPackage rec {
pname = "grex";
version = "1.4.0";
version = "1.4.1";
src = fetchFromGitHub {
owner = "pemistahl";
repo = pname;
rev = "v${version}";
sha256 = "sha256-iKrsiHGXaZ4OXkS28+6r0AhPZsb22fDVbDA2QjaVVTw=";
sha256 = "sha256-of6mZ0SeiFXuXmvk64WoUNv6CLoj05K2kQpDQLMLwuY=";
};
cargoSha256 = "sha256-J+kz4aj6CXm0QsMQfPwK+30EtQOtfpCwp821DLhpVCI=";
cargoSha256 = "sha256-BS9K/1CyNYFwC/zQXEWZcSCjQyWgLgcVNbuyez2q/Ak=";
buildInputs = lib.optionals stdenv.isDarwin [ Security ];