mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00

- flake & compatibility - searxng package & overlay for installation via Nix package manager - development shell with make & python with dependencies for local execution of built artifact
9 lines
293 B
Nix
9 lines
293 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
|