1{ lib
2, rustPlatform
3, fetchFromGitHub
4}:
5
6rustPlatform.buildRustPackage rec {
7 pname = "conserve";
8 version = "23.9.0";
9
10 src = fetchFromGitHub {
11 owner = "sourcefrog";
12 repo = "conserve";
13 rev = "v${version}";
14 hash = "sha256-QBGuLSW4Uek1ag+QwXvoI8IEDM3j1MAOpScb9tIWrfA=";
15 };
16
17 cargoHash = "sha256-fKEktRDydmLJdU2KMDn4T637ogdbvT3OwWCzyIVaymc=";
18
19 meta = with lib; {
20 description = "Robust portable backup tool in Rust";
21 homepage = "https://github.com/sourcefrog/conserve";
22 license = licenses.gpl2Only;
23 maintainers = with maintainers; [ happysalada ];
24 };
25}