Might be useful to start out smaller

This commit is contained in:
Nox Sluijtman 2023-12-22 22:03:29 +01:00
parent 8dacff626f
commit be629ae9a5

View file

@ -10,18 +10,14 @@
};
};
outputs = { self, flake-utils, nixpkgs, uiua }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; };
let system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
packages = {
default = uiua.packages.${system}.default;
};
hydraJobs = {
inherit (self) packages;
};
});
};
}