From ad1088fe60c6ac0b0366c19c7c924f22de1581dc Mon Sep 17 00:00:00 2001 From: Marty Sluijtman Date: Sat, 23 Dec 2023 03:39:56 +0100 Subject: [PATCH] yes --- flake.nix | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/flake.nix b/flake.nix index 641936e..ff73b79 100644 --- a/flake.nix +++ b/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;