Compare commits
No commits in common. "c085792db2b9774f5af9307ed65aaa9cce607e7a" and "be629ae9a5943ea80558b703344536d4631cb12e" have entirely different histories.
c085792db2
...
be629ae9a5
1 changed files with 5 additions and 9 deletions
14
flake.nix
14
flake.nix
|
@ -1,24 +1,20 @@
|
||||||
{
|
{
|
||||||
description = "A few hydra jobs";
|
description = "A few hydra jobs";
|
||||||
inputs = {
|
inputs = {
|
||||||
|
#nixpkgs.url = github:NixOS/nixpkgs/nixos-23.11;
|
||||||
nixpkgs.url = github:NixOS/nixpkgs/nixos-unstable;
|
nixpkgs.url = github:NixOS/nixpkgs/nixos-unstable;
|
||||||
flake-utils.url = github:numtide/flake-utils;
|
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, uiua, nickel }:
|
outputs = { self, flake-utils, nixpkgs, uiua }:
|
||||||
let system = "x86_64-linux";
|
let system = "x86_64-linux";
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
in {
|
in {
|
||||||
packages = {
|
packages = {
|
||||||
uiua = uiua.packages.${system}.default;
|
default = uiua.packages.${system}.default;
|
||||||
nickel = nickel.packages.${system}.default;
|
|
||||||
};
|
};
|
||||||
hydraJobs = {
|
hydraJobs = {
|
||||||
inherit (self) packages;
|
inherit (self) packages;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue