mirror of
https://github.com/logos-blockchain/lez-explorer-ui.git
synced 2026-04-08 20:43:16 +00:00
29 lines
481 B
Nix
29 lines
481 B
Nix
# Common build configuration shared across all packages
|
|
{ pkgs }:
|
|
|
|
{
|
|
pname = "lez-explorer-ui";
|
|
version = "1.0.0";
|
|
|
|
nativeBuildInputs = [
|
|
pkgs.cmake
|
|
pkgs.ninja
|
|
pkgs.pkg-config
|
|
pkgs.qt6.wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
pkgs.qt6.qtbase
|
|
pkgs.qt6.qtsvg
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-GNinja"
|
|
];
|
|
|
|
meta = with pkgs.lib; {
|
|
description = "LEZ Explorer UI - A Qt block explorer for the Logos Execution Zone";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|