mirror of
https://github.com/Jovian-Experiments/Jovian-NixOS.git
synced 2025-10-05 16:22:38 +02:00
Fix eval under allowAliases = false, enable it in CI
This commit is contained in:
@@ -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);
|
||||
|
@@ -2,7 +2,7 @@
|
||||
, fetchFromGitHub
|
||||
, autoPatchelfHook
|
||||
, makeWrapper
|
||||
, libusb
|
||||
, libusb1
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation(finalAttrs: {
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation(finalAttrs: {
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
libusb
|
||||
libusb1
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
Reference in New Issue
Block a user