472aeafc57
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
41 lines
833 B
Nix
41 lines
833 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, libgit2
|
|
, zlib
|
|
, cmake
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "gql";
|
|
version = "0.28.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AmrDeveloper";
|
|
repo = "GQL";
|
|
rev = version;
|
|
hash = "sha256-BA94Q8nRf4NptVBHSMYLMEklB9vHaXRU1+o7shXhkZQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-L+o0ZhTI7x01DpGuhWrvzvSZDYHc++31svWTJ41qx90=";
|
|
|
|
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";
|
|
};
|
|
}
|