Compare commits

...
Sign in to create a new pull request.

2 commits

Author SHA1 Message Date
8e2ff5154e Merge branch 'master' into master 2026-05-20 01:55:25 -04:00
24cccf588c add flake 2026-05-20 15:52:40 +10:00

37
flake.nix Normal file
View file

@ -0,0 +1,37 @@
{
description = "toes terminal emulator";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
};
outputs =
{ nixpkgs, ... }:
let
systems = [
"aarch64-linux"
"x86_64-linux"
];
forAllSystems = nixpkgs.lib.genAttrs systems;
in
{
packages = forAllSystems (
system:
let
pkgs = import nixpkgs { inherit system; };
toes = pkgs.foot.overrideAttrs {
pname = "toes";
version = "1.26.1";
src = ./.;
meta.mainProgram = "foot";
};
in
{
inherit toes;
default = toes;
}
);
};
}