biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rover / default.nix
bloba540a8c6448d2ba2ad49de00484495942c8cd403
1 { lib
2 , fetchFromGitHub
3 , perl
4 , rustPlatform
5 , darwin
6 , stdenv
7 }:
9 rustPlatform.buildRustPackage rec {
10   pname = "rover";
11   version = "0.23.0";
13   src = fetchFromGitHub {
14     owner = "apollographql";
15     repo = pname;
16     rev = "v${version}";
17     sha256 = "sha256-c1Tnb9ACyV6RZmYnLL+KnybGgy8kwGi0JyWYcoH1J6M=";
18   };
20   cargoSha256 = "sha256-wTvQ4QBysppMgwv9pjQckVjMoBzLiDReOt6sJImqKFY=";
22   buildInputs = lib.optionals stdenv.isDarwin [
23     darwin.apple_sdk.frameworks.Security
24     darwin.apple_sdk.frameworks.CoreServices
25     darwin.apple_sdk.frameworks.SystemConfiguration
26   ];
28   nativeBuildInputs = [
29     perl
30   ];
32   # This test checks whether the plugins specified in the plugins json file are
33   # valid by making a network call to the repo that houses their binaries; but, the
34   # build env can't make network calls (impurity)
35   cargoTestFlags = [
36     "-- --skip=latest_plugins_are_valid_versions"
37   ];
39   passthru.updateScript = ./update.sh;
41   # Some tests try to write configuration data to a location in the user's home
42   # directory. Since this would be /homeless-shelter during the build, point at
43   # a writeable location instead.
44   preCheck = ''
45     export APOLLO_CONFIG_HOME="$PWD"
46   '';
48   meta = with lib; {
49     description = "A CLI for interacting with ApolloGraphQL's developer tooling, including managing self-hosted and GraphOS graphs.";
50     mainProgram = "rover";
51     homepage = "https://www.apollographql.com/docs/rover";
52     license = licenses.mit;
53     maintainers = [ maintainers.ivanbrennan maintainers.aaronarinder ];
54   };