slippy: 0.1.0 -> 0.1.1

Diff: https://github.com/axodotdev/slippy/compare/v0.1.0...v0.1.1

Changelog: https://github.com/axodotdev/slippy/releases/tag/v0.1.1

authored by

figsoda and committed by
Matthieu Coudron
43564e5b 2ee12a93

+8 -3
+8 -3
pkgs/applications/misc/slippy/default.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "slippy"; 14 - version = "0.1.0"; 14 + version = "0.1.1"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "axodotdev"; 18 18 repo = "slippy"; 19 19 rev = "v${version}"; 20 - hash = "sha256-oxXmfvdnYmmKXvKHpJC23cvHaVdh5cpfQ1q5GPLskfY="; 20 + hash = "sha256-7Uvo5+saxwTMQjfDliyOYC6j6LbpMf/FiONfX38xepI="; 21 21 }; 22 22 23 - cargoHash = "sha256-4MMTWhyi2/n9ESX2KJFERsXQHyGZunvArbYQmKiV7Eg="; 23 + cargoHash = "sha256-6nB+rHBJU9qhA7azz2ynaBw1UJdwE+T7pgpoPzhD5Bk="; 24 24 25 25 # the dependency css-minify contains both README.md and Readme.md, 26 26 # which causes a hash mismatch on systems with a case-insensitive filesystem ··· 52 52 ] ++ lib.optionals stdenv.isDarwin [ 53 53 darwin.apple_sdk.frameworks.Security 54 54 ]; 55 + 56 + # Cargo.lock is outdated 57 + postConfigure = '' 58 + cargo metadata --offline 59 + ''; 55 60 56 61 meta = with lib; { 57 62 description = "Markdown slideshows in Rust";