Merge pull request #133160 from vyp/update-tiny

tiny: 0.8.0 -> 0.9.0

authored by

Sandro and committed by
GitHub
be699e47 717538e9

+19 -10
+6 -10
pkgs/applications/networking/irc/tiny/default.nix
··· 1 1 { stdenv 2 2 , lib 3 3 , rustPlatform 4 - , fetchpatch 5 4 , fetchFromGitHub 6 5 , pkg-config 7 6 , dbus ··· 11 10 12 11 rustPlatform.buildRustPackage rec { 13 12 pname = "tiny"; 14 - version = "0.8.0"; 13 + version = "0.9.0"; 15 14 16 15 src = fetchFromGitHub { 17 16 owner = "osa1"; 18 17 repo = pname; 19 18 rev = "v${version}"; 20 - sha256 = "07a50shv6k4fwl2gmv4j0maxaqqkjpwwmqkxkqs0gvx38lc5f7m7"; 19 + sha256 = "gKyHR3FZHDybaP38rqB8/gvr8T+mDO4QQxoTtWS+TlE="; 21 20 }; 22 21 23 - cargoSha256 = "0npkcprcqy2pn7k64jzwg41vk9id6yzw211xw203h80cc5444igr"; 22 + cargoSha256 = "0ChfW8vaqC2kCp4lpS0HOvhuihPw9G5TOmgwKzVDfws="; 24 23 24 + # Fix Cargo.lock version. Remove with the next release. 25 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 - }) 26 + ./fix-Cargo.lock.patch 31 27 ]; 32 28 33 29 nativeBuildInputs = lib.optional stdenv.isLinux pkg-config; ··· 38 34 homepage = "https://github.com/osa1/tiny"; 39 35 changelog = "https://github.com/osa1/tiny/blob/v${version}/CHANGELOG.md"; 40 36 license = licenses.mit; 41 - maintainers = with maintainers; [ Br1ght0ne ]; 37 + maintainers = with maintainers; [ Br1ght0ne vyp ]; 42 38 }; 43 39 }
+13
pkgs/applications/networking/irc/tiny/fix-Cargo.lock.patch
··· 1 + diff --git a/Cargo.lock b/Cargo.lock 2 + index 3a184dc..0e58cb1 100644 3 + --- a/Cargo.lock 4 + +++ b/Cargo.lock 5 + @@ -1023,7 +1023,7 @@ dependencies = [ 6 + 7 + [[package]] 8 + name = "tiny" 9 + -version = "0.8.0" 10 + +version = "0.9.0" 11 + dependencies = [ 12 + "clap", 13 + "dirs 3.0.1",