Merge pull request #162465 from toastal/himalaya-0.5.7

himalaya: 0.5.5 → 0.5.8

authored by

Timo Kaufmann and committed by
GitHub
09930fe1 71100299

+6 -4
+6 -4
pkgs/applications/networking/mailreaders/himalaya/default.nix
··· 12 12 13 13 rustPlatform.buildRustPackage rec { 14 14 pname = "himalaya"; 15 - version = "0.5.5"; 15 + version = "0.5.8"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "soywod"; 19 19 repo = pname; 20 20 rev = "v${version}"; 21 - sha256 = "sha256-BZTecYNY8gbGe+r80QWi7FkC56dww9rrtwLfi9ya1mQ="; 21 + sha256 = "sha256-Ejaspj0YpkGmfO1omOhx8ZDg77J7NqC32mw5Cd3K1FM="; 22 22 }; 23 23 24 - cargoSha256 = "sha256-2xkKJqp7uf0gh8g2zzDjSl8foTvPj6MVHfDuSr914HU="; 24 + cargoSha256 = "sha256-xce2iHrqTxIirrut4dN7526pjE4T+ruaDS44jr+KeGs="; 25 25 26 26 nativeBuildInputs = lib.optionals enableCompletions [ installShellFiles ] 27 27 ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ pkg-config ]; ··· 33 33 ] else [ 34 34 openssl 35 35 ]; 36 + 37 + cargoTestFlags = [ "--lib" ]; 36 38 37 39 postInstall = lib.optionalString enableCompletions '' 38 40 # Install shell function ··· 46 48 description = "CLI email client written in Rust"; 47 49 homepage = "https://github.com/soywod/himalaya"; 48 50 changelog = "https://github.com/soywod/himalaya/blob/v${version}/CHANGELOG.md"; 49 - license = licenses.bsd3; 51 + license = licenses.bsdOriginal; 50 52 maintainers = with maintainers; [ yanganto ]; 51 53 }; 52 54 }