mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
graphql-client: init at 0.10.0
Co-authored-by: figsoda <figsoda@pm.me>
This commit is contained in:
parent
6dba4f04a2
commit
1a83d487b7
2 changed files with 32 additions and 0 deletions
28
pkgs/development/tools/graphql-client/default.nix
Normal file
28
pkgs/development/tools/graphql-client/default.nix
Normal file
|
@ -0,0 +1,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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -13179,6 +13179,10 @@ with pkgs;
|
||||||
mpi = mpich;
|
mpi = mpich;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
graphql-client = callPackage ../development/tools/graphql-client {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
|
};
|
||||||
|
|
||||||
groovy = callPackage ../development/interpreters/groovy { };
|
groovy = callPackage ../development/interpreters/groovy { };
|
||||||
|
|
||||||
inherit (callPackages ../applications/networking/cluster/hadoop { })
|
inherit (callPackages ../applications/networking/cluster/hadoop { })
|
||||||
|
|
Loading…
Reference in a new issue