{ lib, rustPlatform, fetchFromGitHub, pkg-config, libgit2, zlib, cmake, }: rustPlatform.buildRustPackage rec { pname = "gql"; version = "0.41.0"; src = fetchFromGitHub { owner = "AmrDeveloper"; repo = "GQL"; rev = version; hash = "sha256-iczBVix56aKbvOksxYmZ8WPgngnTDn9MIlVnZ2nA5Ts="; }; cargoHash = "sha256-vblQuUSpTK93UEYdiEPq1C3N+E3WCTZHoLJDWG4rZNs="; nativeBuildInputs = [ pkg-config cmake ]; buildInputs = [ libgit2 zlib ]; meta = with lib; { description = "SQL like query language to perform queries on .git files"; homepage = "https://github.com/AmrDeveloper/GQL"; changelog = "https://github.com/AmrDeveloper/GQL/releases/tag/${src.rev}"; license = licenses.mit; maintainers = with maintainers; [ figsoda ]; mainProgram = "gitql"; }; }