This commit is contained in:
Nox Sluijtman 2023-12-23 03:39:56 +01:00
parent e3cd3c0ef0
commit ad1088fe60

View file

@ -7,18 +7,19 @@
url = github:uiua-lang/uiua?ref=0.7.1; url = github:uiua-lang/uiua?ref=0.7.1;
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
nickel = { #nickel = {
url = github:tweag/nickel/stable; # url = github:tweag/nickel/stable;
inputs.nixpkgs.follows = "nixpkgs"; # inputs.nixpkgs.follows = "nixpkgs";
}; #};
}; };
outputs = { self, nixpkgs, flake-utils, uiua, nickel }: outputs = { self, nixpkgs, flake-utils, uiua#, nickel
}:
flake-utils.lib.eachDefaultSystem (system: flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; }; let pkgs = import nixpkgs { inherit system; };
in { in {
packages = { packages = {
uiua = uiua.packages.${system}.default; default = uiua.packages.${system}.default;
nickel = nickel.packages.${system}.default; #nickel = nickel.packages.${system}.default;
}; };
hydraJobs = { hydraJobs = {
inherit (self) packages; inherit (self) packages;