Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 fetchCrate, 4 rustPlatform, 5}: 6 7rustPlatform.buildRustPackage rec { 8 pname = "keepass-diff"; 9 version = "1.2.0"; 10 11 src = fetchCrate { 12 inherit pname version; 13 hash = "sha256-CqLH5Dosp26YfqgOVcZilfo5svAEv+pAbi1zebGMnb4="; 14 }; 15 16 cargoHash = "sha256-QjcXeLLIvegzETIu3xbZQ+o2WYxR6xkALVOOWYWhGUo="; 17 18 meta = with lib; { 19 description = "CLI-tool to diff Keepass (.kdbx) files"; 20 homepage = "https://keepass-diff.narigo.dev/"; 21 license = licenses.mit; 22 maintainers = with maintainers; [ wamserma ]; 23 mainProgram = "keepass-diff"; 24 }; 25}