yes
This commit is contained in:
parent
e3cd3c0ef0
commit
ad1088fe60
15
flake.nix
15
flake.nix
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue