Skip to content

Commit

Permalink
Fix eval under allowAliases = false, enable it in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
K900 committed Aug 17, 2024
1 parent e4e0ca1 commit dcc9afe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
eachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: let
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
config = {
allowAliases = false;
allowUnfree = true;
};
overlays = [ self.overlays.default ];
};
in f pkgs);
Expand Down
4 changes: 2 additions & 2 deletions pkgs/jupiter-dock-updater-bin/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
, fetchFromGitHub
, autoPatchelfHook
, makeWrapper
, libusb
, libusb1
}:

stdenv.mkDerivation(finalAttrs: {
Expand All @@ -17,7 +17,7 @@ stdenv.mkDerivation(finalAttrs: {
};

buildInputs = [
libusb
libusb1
];

nativeBuildInputs = [
Expand Down

0 comments on commit dcc9afe

Please sign in to comment.