Skip to content

Commit cd17881

Browse files
committed
fix build
1 parent b205aca commit cd17881

File tree

3 files changed

+18
-11
lines changed

3 files changed

+18
-11
lines changed

default.nix

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
1-
{ lib, version, src, rustPlatform, solana-cli, osSpecificPackages, pkgconfig
2-
, openssl }:
1+
{ lib
2+
, version
3+
, src
4+
, rustPlatform
5+
, solana-basic
6+
, osSpecificPackages
7+
, pkgconfig
8+
, openssl
9+
}:
310

411
rustPlatform.buildRustPackage rec {
512
pname = "goki-cli";
@@ -10,7 +17,7 @@ rustPlatform.buildRustPackage rec {
1017
strictDeps = true;
1118

1219
nativeBuildInputs = [ pkgconfig ];
13-
buildInputs = osSpecificPackages ++ [ openssl solana-cli ];
20+
buildInputs = osSpecificPackages ++ [ openssl solana-basic ];
1421

1522
meta = with lib; {
1623
homepage = "https://goki.so";

flake.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
};
1313

1414
outputs = { self, nixpkgs, saber-overlay, flake-utils, gitignore }:
15-
flake-utils.lib.eachDefaultSystem (system:
15+
flake-utils.lib.eachSystem saber-overlay.lib.supportedSystems (system:
1616
let
1717
pkgs = import nixpkgs { inherit system; }
1818
// saber-overlay.packages.${system};
@@ -21,7 +21,7 @@
2121
(lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks;
2222
([ IOKit Security CoreFoundation AppKit ]
2323
++ (lib.optionals stdenv.isAarch64 [ System ]))))
24-
++ (lib.optionals stdenv.isLinux [ libudev ]);
24+
++ (lib.optionals stdenv.isLinux [ udev ]);
2525

2626
goki-cli = import ./default.nix {
2727
inherit (pkgs) lib solana-basic rustPlatform pkgconfig openssl;

0 commit comments

Comments
 (0)