about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/graphql-client/default.nix
blob: b98f287d612d6eb70b7c43effb4345aa02a35191 (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
{ lib, stdenv, rustPlatform, fetchCrate, pkg-config, openssl, Security }:

rustPlatform.buildRustPackage rec {
  pname = "graphql-client";
  version = "0.10.0";

  src = fetchCrate {
    inherit version;
    crateName = "graphql_client_cli";
    sha256 = "sha256-OV4kpvciEJOGfhkxPoNf1QmhdytWMhXuQAKOFJvDFA4=";
  };

  cargoSha256 = "sha256-r/pRwDLc/yGMzdZIx8SV46o63eb6qrlTb6MsUBhq97w=";

  nativeBuildInputs = [
    pkg-config
  ];
  buildInputs = [
    openssl
  ] ++ lib.optionals stdenv.isDarwin [ Security ];

  meta = with lib; {
    description = "A GraphQL tool for Rust projects";
    homepage = "https://github.com/graphql-rust/graphql-client";
    license = with licenses; [ asl20 /* or */ mit ];
    maintainers = with maintainers; [ bbigras ];
  };
}