mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-30 09:55:29 +03:00
43c615e180
`flake-utils` doesn't use `nixpkgs` as an input.
18 lines
582 B
Nix
18 lines
582 B
Nix
{
|
|
description = "Zellij, a terminal workspace with batteries included";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
rust-overlay.url = "github:oxalica/rust-overlay";
|
|
rust-overlay.inputs.nixpkgs.follows = "nixpkgs";
|
|
rust-overlay.inputs.flake-utils.follows = "flake-utils";
|
|
flake-compat.url = "github:edolstra/flake-compat";
|
|
flake-compat.flake = false;
|
|
crate2nix.url = "github:kolloch/crate2nix";
|
|
crate2nix.flake = false;
|
|
};
|
|
|
|
outputs = {...} @ args: import ./nix args;
|
|
}
|