mirror of
https://github.com/pimalaya/himalaya.git
synced 2026-06-17 21:37:55 +08:00
3ceef291a1
Refs: #515
25 lines
547 B
Nix
25 lines
547 B
Nix
{
|
|
description = "CLI to manage emails";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
fenix = {
|
|
# TODO: https://github.com/nix-community/fenix/pull/145
|
|
# url = "github:nix-community/fenix";
|
|
url = "github:soywod/fenix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
pimalaya = {
|
|
url = "github:pimalaya/nix";
|
|
flake = false;
|
|
};
|
|
};
|
|
|
|
outputs =
|
|
inputs:
|
|
(import inputs.pimalaya).mkFlakeOutputs inputs {
|
|
shell = ./shell.nix;
|
|
default = ./default.nix;
|
|
};
|
|
}
|