Merge pull request #109568 from marsam/update-tiny

tiny: 0.7.0 -> 0.8.0

authored by

Mario Rodas and committed by
GitHub
bb64d2bc e9f26633

+11 -4
+11 -4
pkgs/applications/networking/irc/tiny/default.nix
··· 11 12 rustPlatform.buildRustPackage rec { 13 pname = "tiny"; 14 - version = "0.7.0"; 15 16 src = fetchFromGitHub { 17 owner = "osa1"; 18 repo = pname; 19 rev = "v${version}"; 20 - sha256 = "11kjndd4rzj83hzhcqvvp9nxjkana63m0h5r51xwp1ww9sn63km9"; 21 }; 22 23 - cargoSha256 = "079ns78acsff2qb59s7q0ck3j2fygcfqy8is6vfa71jyq7a0rjqm"; 24 25 - RUSTC_BOOTSTRAP = 1; 26 27 nativeBuildInputs = lib.optional stdenv.isLinux pkg-config; 28 buildInputs = lib.optionals stdenv.isLinux [ dbus openssl ] ++ lib.optional stdenv.isDarwin Foundation; ··· 30 meta = with lib; { 31 description = "A console IRC client"; 32 homepage = "https://github.com/osa1/tiny"; 33 license = licenses.mit; 34 maintainers = with maintainers; [ Br1ght0ne ]; 35 };
··· 11 12 rustPlatform.buildRustPackage rec { 13 pname = "tiny"; 14 + version = "0.8.0"; 15 16 src = fetchFromGitHub { 17 owner = "osa1"; 18 repo = pname; 19 rev = "v${version}"; 20 + sha256 = "07a50shv6k4fwl2gmv4j0maxaqqkjpwwmqkxkqs0gvx38lc5f7m7"; 21 }; 22 23 + cargoSha256 = "009jqizj4qg1bqslna35myxcark40hwlqsz58fbps9nsgp1i0hq2"; 24 25 + cargoPatches = [ 26 + # Fix Cargo.lock version. Remove with the next release. 27 + (fetchpatch { 28 + url = "https://github.com/osa1/tiny/commit/b1caf48a6399dad8875de1d965d1ad445e49585d.patch"; 29 + sha256 = "1zkjhx94nwmd69cfwwwzg51ipcwq01wyvgsmn0vq7iaa2h0d286i"; 30 + }) 31 + ]; 32 33 nativeBuildInputs = lib.optional stdenv.isLinux pkg-config; 34 buildInputs = lib.optionals stdenv.isLinux [ dbus openssl ] ++ lib.optional stdenv.isDarwin Foundation; ··· 36 meta = with lib; { 37 description = "A console IRC client"; 38 homepage = "https://github.com/osa1/tiny"; 39 + changelog = "https://github.com/osa1/tiny/blob/v${version}/CHANGELOG.md"; 40 license = licenses.mit; 41 maintainers = with maintainers; [ Br1ght0ne ]; 42 };