Merge pull request #286187 from NobbZ/rustic-0-7-0

rustic-rs: 0.6.1 -> 0.7.0
This commit is contained in:
Norbert Melzer 2024-02-04 23:48:31 +01:00 committed by GitHub
commit c54ebe3c06
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,16 +10,23 @@
rustPlatform.buildRustPackage rec {
pname = "rustic-rs";
version = "0.6.1";
version = "0.7.0";
src = fetchFromGitHub {
owner = "rustic-rs";
repo = "rustic";
rev = "refs/tags/v${version}";
hash = "sha256-rpIEgQYwfManfgTrhCt6/Q4VBY2yyn4edC6/mz5D7nM=";
hash = "sha256-jUAmboJTzX4oJZy9rFiPRbm94bVpZGa0SaqotoCU/Ss=";
};
cargoHash = "sha256-q+K887jPB9i9iXpFYXjn3zppAPWNlTc2AG7ivOr77J4=";
cargoHash = "sha256-iZuWlYDGGziwb49BfKdt9Ahs6oQ0Ij2iiT0tvL7ZIVk=";
# At the time of writing, upstream defaults to "self-update" and "webdav".
# "self-update" is a self-updater, which we don't want in nixpkgs.
buildNoDefaultFeatures = true;
buildFeatures = [
"webdav"
];
nativeBuildInputs = [ installShellFiles ];