baffled
This commit is contained in:
parent
b3cb66f1a2
commit
e3cd3c0ef0
14
flake.nix
14
flake.nix
|
@ -7,18 +7,18 @@
|
||||||
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 }:
|
};
|
||||||
|
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 = {
|
||||||
default = uiua.packages.${system}.default;
|
uiua = uiua.packages.${system}.default;
|
||||||
#default = nickel.packages.${system}.default;
|
nickel = nickel.packages.${system}.default;
|
||||||
};
|
};
|
||||||
hydraJobs = {
|
hydraJobs = {
|
||||||
inherit (self) packages;
|
inherit (self) packages;
|
||||||
|
|
Loading…
Reference in a new issue