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;
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
nickel = {
|
||||
url = github:tweag/nickel/stable;
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
#nickel = {
|
||||
# url = github:tweag/nickel/stable;
|
||||
# inputs.nixpkgs.follows = "nixpkgs";
|
||||
#};
|
||||
};
|
||||
outputs = { self, nixpkgs, flake-utils, uiua, nickel }:
|
||||
outputs = { self, nixpkgs, flake-utils, uiua#, nickel
|
||||
}:
|
||||
flake-utils.lib.eachDefaultSystem (system:
|
||||
let pkgs = import nixpkgs { inherit system; };
|
||||
in {
|
||||
packages = {
|
||||
uiua = uiua.packages.${system}.default;
|
||||
nickel = nickel.packages.${system}.default;
|
||||
default = uiua.packages.${system}.default;
|
||||
#nickel = nickel.packages.${system}.default;
|
||||
};
|
||||
hydraJobs = {
|
||||
inherit (self) packages;
|
||||
|
|
Loading…
Reference in a new issue