Compare commits

..

1 commit

Author SHA1 Message Date
c7d0d335db idk 2023-12-23 04:23:50 +01:00

View file

@ -2,27 +2,20 @@
description = "A few hydra jobs"; description = "A few hydra jobs";
inputs = { inputs = {
nixpkgs.url = github:NixOS/nixpkgs/nixos-unstable; nixpkgs.url = github:NixOS/nixpkgs/nixos-unstable;
flake-utils.url = github:numtide/flake-utils;
uiua = { uiua = {
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 = {
# url = github:tweag/nickel/stable;
# inputs.nixpkgs.follows = "nixpkgs";
#};
}; };
outputs = { self, nixpkgs, flake-utils, uiua#, nickel outputs = { self, nixpkgs, uiua }:
}: let system = "x86_64-linux";
flake-utils.lib.eachDefaultSystem (system: pkgs = nixpkgs.legacyPackages.${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; hydraJobs = {
}; inherit (self) packages;
hydraJobs = { };
inherit (self) packages; };
};
});
} }