gitoxide: 0.8.4 -> 0.10.0

figsoda 4c121d16 a6a0964e

+17 -7
+17 -7
pkgs/applications/version-management/gitoxide/default.nix
··· 1 - { lib, stdenv, rustPlatform, cmake, fetchFromGitHub, pkg-config, openssl 2 - , libiconv, Security, SystemConfiguration }: 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , cmake 5 + , pkg-config 6 + , stdenv 7 + , libiconv 8 + , Security 9 + , SystemConfiguration 10 + , openssl 11 + }: 3 12 4 13 rustPlatform.buildRustPackage rec { 5 14 pname = "gitoxide"; 6 - version = "0.8.4"; 15 + version = "0.10.0"; 7 16 8 17 src = fetchFromGitHub { 9 18 owner = "Byron"; 10 19 repo = "gitoxide"; 11 20 rev = "v${version}"; 12 - sha256 = "WH8YiW1X7TkURjncm0OefxrZhnhGHaGLwxRNxe17g/0="; 21 + sha256 = "sha256-c29gmmkIOyS+HNq2kv53yq+sdEDmQbSmcvVGcd55/hk="; 13 22 }; 14 23 15 - cargoSha256 = "eTPJMYl9m81o4PJKfpDs61KmehSvKnY+bgybEodOhAM="; 24 + cargoSha256 = "sha256-oc7XpiOZj4bfqdwrEHj/CzNtWzYWFkgMJOySJNgxAGQ="; 16 25 17 26 nativeBuildInputs = [ cmake pkg-config ]; 18 27 buildInputs = if stdenv.isDarwin 19 - then [ libiconv Security SystemConfiguration] 28 + then [ libiconv Security SystemConfiguration ] 20 29 else [ openssl ]; 21 30 22 31 # Needed to get openssl-sys to use pkg-config. ··· 25 34 meta = with lib; { 26 35 description = "A command-line application for interacting with git repositories"; 27 36 homepage = "https://github.com/Byron/gitoxide"; 37 + changelog = "https://github.com/Byron/gitoxide/blob/v${version}/CHANGELOG.md"; 28 38 license = with licenses; [ mit /* or */ asl20 ]; 29 - maintainers = [ maintainers.syberant ]; 39 + maintainers = with maintainers; [ syberant ]; 30 40 }; 31 41 }