--- /dev/null
+{
+ "nodes": {
+ "nixpkgs": {
+ "locked": {
+ "lastModified": 1630612789,
+ "narHash": "sha256-f1q5ExkMX2CBqBcRmrlnpewADt3EjhyncP/PfwUhK/Q=",
+ "owner": "L-as",
+ "repo": "nixpkgs",
+ "rev": "11f9ff27bc66bf653ccbbfae1412e6f5705e4a5c",
+ "type": "github"
+ },
+ "original": {
+ "owner": "L-as",
+ "ref": "alliance",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "root": {
+ "inputs": {
+ "nixpkgs": "nixpkgs"
+ }
+ }
+ },
+ "root": "root",
+ "version": 7
+}
--- /dev/null
+# The license for this file is included in the `nix` directory next to this file.
+
+{
+ description = "FOSS CPU/GPU/VPU/SoC all in one, see https://libre-soc.org/";
+
+ inputs.nixpkgs.url = "github:L-as/nixpkgs?ref=alliance"; # for alliance
+
+ outputs = { self, nixpkgs }:
+ let
+ version = builtins.substring 0 8 self.lastModifiedDate;
+
+ supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ];
+
+ forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
+
+ nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; overlays = [ self.overlay ]; });
+
+ in
+ {
+ overlay = final: prev: {};
+ };
+}