blob: eb365325a3bec0defacf1278d21b74a53568da55 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{ lib, stdenv, rustPlatform, fetchCrate, pkg-config, openssl, Security }:
rustPlatform.buildRustPackage rec {
pname = "graphql-client";
version = "0.13.0";
src = fetchCrate {
inherit version;
crateName = "graphql_client_cli";
hash = "sha256-eQ+7Ru3au/rDQZtwFDXYyybqC5uFtNBs6cEzX2QSFI4=";
};
cargoSha256 = "sha256-fEjt7ax818hlIq2+UrIG6EismQUGdaq7/C3xN+Nrw2s=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
openssl
] ++ lib.optionals stdenv.isDarwin [ Security ];
meta = with lib; {
description = "GraphQL tool for Rust projects";
mainProgram = "graphql-client";
homepage = "https://github.com/graphql-rust/graphql-client";
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ bbigras ];
};
}
|