Skip to content

Commit

Permalink
reset
Browse files Browse the repository at this point in the history
  • Loading branch information
srid committed Apr 3, 2024
1 parent 5df6c5f commit 13fd189
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions flake-module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,7 @@ in

rust-project.rustBuildInputs = lib.mkOption {
type = lib.types.listOf lib.types.package;
# XXX: Do we need this?
default = lib.optionals pkgs.stdenv.isDarwin (
with pkgs.darwin.apple_sdk.frameworks; [
IOKit
Carbon
WebKit
Security
Cocoa
]
);
default = [];
description = "(Runtime) buildInputs for the cargo package";
};

Expand Down Expand Up @@ -74,8 +65,7 @@ in
inherit src;
pname = name;
version = version;
buildInputs = [
] ++ config.rust-project.rustBuildInputs;
buildInputs = config.rust-project.rustBuildInputs;
nativeBuildInputs = with pkgs;[
pkg-config
makeWrapper
Expand Down

0 comments on commit 13fd189

Please sign in to comment.