agate: 3.3.3 → 3.3.4

This commit is contained in:
Nikolay Korotkiy 2024-02-08 01:07:58 +04:00
parent aef7c94e24
commit 836354b573
No known key found for this signature in database
GPG key ID: D1DE6D7F693663A5

View file

@ -1,25 +1,17 @@
{ lib, stdenv, nixosTests, fetchFromGitHub, fetchpatch, rustPlatform, libiconv, Security }:
{ lib, stdenv, nixosTests, fetchFromGitHub, rustPlatform, libiconv, Security }:
rustPlatform.buildRustPackage rec {
pname = "agate";
version = "3.3.3";
version = "3.3.4";
src = fetchFromGitHub {
owner = "mbrubeck";
repo = "agate";
rev = "v${version}";
hash = "sha256-qINtAOPrmLUWfEjZNj11W2WoIFw7Ye3KDk+9ZKtZAvo=";
hash = "sha256-7z3iAA+Q3k5jEO9ZhA06h7/17gE0FWPqDOGK/XENRWg=";
};
cargoPatches = [
# Update version in Cargo.lock
(fetchpatch {
url = "https://github.com/mbrubeck/agate/commit/ac57093d2f73a20d0d4f84b551beef4ac9cb4a24.patch";
hash = "sha256-OknfBkaBWm3svSp8LSvyfy2g0y0SkR7VtJQUdAjClFs=";
})
];
cargoHash = "sha256-18V1/d2A3DJmpYX/5Z8M3uAaHrULGIgCT4ntcV4N8l0=";
cargoHash = "sha256-iTopJnuH2extGnaJXL+RPUwcvj2e+k5A4BT33v+sFiA=";
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
@ -31,6 +23,8 @@ rustPlatform.buildRustPackage rec {
runHook postInstallCheck
'';
__darwinAllowLocalNetworking = true;
passthru.tests = { inherit (nixosTests) agate; };
meta = with lib; {