mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-05 03:02:58 +03:00
9 lines
345 B
Nix
9 lines
345 B
Nix
# Flake's default package for non-flake-enabled nix instances
|
|
let
|
|
compat = builtins.fetchTarball {
|
|
url = "https://github.com/edolstra/flake-compat/archive/b4a34015c698c7793d592d66adbab377907a2be8.tar.gz";
|
|
sha256 = "sha256:1qc703yg0babixi6wshn5wm2kgl5y1drcswgszh4xxzbrwkk9sv7";
|
|
};
|
|
in
|
|
(import compat {src = ./.;}).defaultNix.default
|