Merge pull request #219563 from pennae/syncstorage

syncstorage-rs: 0.13.2 -> 0.13.5

authored by

Fabian Affolter and committed by
GitHub
341fc792 d521accf

+5 -4
+5 -4
pkgs/servers/syncstorage-rs/default.nix
··· 21 21 22 22 rustPlatform.buildRustPackage rec { 23 23 pname = "syncstorage-rs"; 24 - version = "0.13.2"; 24 + version = "0.13.5"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "mozilla-services"; 28 28 repo = pname; 29 - rev = version; 30 - hash = "sha256-zxpqQpzmPPU6V5QITK9SgAAI7l3/7+h0u3/bZgiU7y4="; 29 + rev = "refs/tags/${version}"; 30 + hash = "sha256-eFrrZ/+8OsmIfCEoXPAKqVkZlgN8sfXueJQvQN8VCB0="; 31 31 }; 32 32 33 33 nativeBuildInputs = [ ··· 47 47 --prefix PATH : ${lib.makeBinPath [ pyFxADeps ]} 48 48 ''; 49 49 50 - cargoHash = "sha256-U0xHqOh0ii4PE9UYKo+diqSoZ1ZjzBmHILvAhHSZD0A="; 50 + cargoHash = "sha256-SgOxXzI6IZcP5Q06Aj5Pv6Rrvb7xVShUcGaViLuESOw="; 51 51 52 52 buildFeatures = [ "grpcio/openssl" ]; 53 53 ··· 57 57 meta = { 58 58 description = "Mozilla Sync Storage built with Rust"; 59 59 homepage = "https://github.com/mozilla-services/syncstorage-rs"; 60 + changelog = "https://github.com/mozilla-services/syncstorage-rs/releases/tag/${version}"; 60 61 license = lib.licenses.mpl20; 61 62 maintainers = with lib.maintainers; [ pennae ]; 62 63 platforms = lib.platforms.linux;