Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, fetchFromGitHub, rustPlatform }: 2 3rustPlatform.buildRustPackage rec { 4 pname = "keepass-diff"; 5 version = "1.1.3"; 6 7 src = fetchFromGitHub { 8 owner = "Narigo"; 9 repo = pname; 10 rev = version; 11 sha256 = "sha256-jd/cUkTHylLwzxolQUzMlXHauCfXUhcUr/1zKpdngbo="; 12 }; 13 14 cargoSha256 = "sha256-2e2lGG72HmX7AFk0+J3U62Kch5ylrqvaIpitRF546JA="; 15 16 meta = with lib; { 17 description = "A CLI-tool to diff Keepass (.kdbx) files"; 18 homepage = "https://keepass-diff.narigo.dev/"; 19 license = licenses.mit; 20 maintainers = with maintainers; [ wamserma ]; 21 }; 22}