mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-23 19:10:09 +03:00
49396fab21
* init(nix): initial nix support * nix(compat): add flake-compat * remove `macro expansion` * remove `extraEntries` from `makeDesktopItem` * fix Categories * add darwin compatibilty
14 lines
320 B
Nix
14 lines
320 B
Nix
(import
|
|
(
|
|
let
|
|
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
|
|
in
|
|
fetchTarball {
|
|
url = "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
|
|
sha256 = lock.nodes.flake-compat.locked.narHash;
|
|
}
|
|
)
|
|
{
|
|
src = ./.;
|
|
}).defaultNix
|