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 { stdenv 2 , lib 3 , rustPlatform 4 - , fetchpatch 5 , fetchFromGitHub 6 , pkg-config 7 , dbus ··· 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 = "0npkcprcqy2pn7k64jzwg41vk9id6yzw211xw203h80cc5444igr"; 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; ··· 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 }; 43 }
··· 1 { stdenv 2 , lib 3 , rustPlatform 4 , fetchFromGitHub 5 , pkg-config 6 , dbus ··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "tiny"; 13 + version = "0.9.0"; 14 15 src = fetchFromGitHub { 16 owner = "osa1"; 17 repo = pname; 18 rev = "v${version}"; 19 + sha256 = "gKyHR3FZHDybaP38rqB8/gvr8T+mDO4QQxoTtWS+TlE="; 20 }; 21 22 + cargoSha256 = "0ChfW8vaqC2kCp4lpS0HOvhuihPw9G5TOmgwKzVDfws="; 23 24 + # Fix Cargo.lock version. Remove with the next release. 25 cargoPatches = [ 26 + ./fix-Cargo.lock.patch 27 ]; 28 29 nativeBuildInputs = lib.optional stdenv.isLinux pkg-config; ··· 34 homepage = "https://github.com/osa1/tiny"; 35 changelog = "https://github.com/osa1/tiny/blob/v${version}/CHANGELOG.md"; 36 license = licenses.mit; 37 + maintainers = with maintainers; [ Br1ght0ne vyp ]; 38 }; 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",