Merge pull request #124942 from yanganto/gitui-16

gitui: 0.15.0 -> 0.16.0

authored by

Fabian Affolter and committed by
GitHub
92644de0 398105b8

+3 -3
+3 -3
pkgs/applications/version-management/git-and-tools/gitui/default.nix
··· 1 1 { lib, stdenv, rustPlatform, fetchFromGitHub, libiconv, perl, python3, Security, AppKit, openssl, xclip }: 2 2 rustPlatform.buildRustPackage rec { 3 3 pname = "gitui"; 4 - version = "0.15.0"; 4 + version = "0.16.0"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "extrawurst"; 8 8 repo = pname; 9 9 rev = "v${version}"; 10 - sha256 = "sha256-KJXYkOHR50Zap0Ou+jVi09opHuZBfHN/ToZbasZ3IE4="; 10 + sha256 = "sha256-XPXldkNLlxgUBdDDR+n3JAO75JQQOvKoduwnWvIompY="; 11 11 }; 12 12 13 - cargoSha256 = "sha256-N6Yr+TqxWwl/6SgjizIyZJoVsjn/R9yjxUKCqwt8UJg="; 13 + cargoSha256 = "sha256-jHrjAdghuFADf/Gd3GeUOpPBG5tqsBG/Q4R0pNxHAps="; 14 14 15 15 nativeBuildInputs = [ python3 perl ]; 16 16 buildInputs = [ openssl ]