Merge pull request #3 from logos-blockchain/erhant/fix-nix-rev

fix!: nix rev fixed to the working version
This commit is contained in:
erhant 2026-06-17 15:24:02 +03:00 committed by GitHub
commit 8ea8574778
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 14 additions and 5 deletions

3
.gitignore vendored
View File

@ -1,2 +1,5 @@
result
build
# ignore lgx builds
lez-explorer-ui-*-lgx-*

8
flake.lock generated
View File

@ -2,17 +2,17 @@
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1751274312,
"narHash": "sha256-/bVBlRpECLVzjV19t5KMdMFWSwKLtb5RyXdjz3LJT+g=",
"lastModified": 1759036355,
"narHash": "sha256-0m27AKv6ka+q270dw48KflE0LwQYrO7Fm4/2//KCVWg=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "50ab793786d9de88ee30ec4e4c24fb4236fc2674",
"rev": "e9f00bd893984bc8ce46c895c3bf7cac95331127",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-24.11",
"repo": "nixpkgs",
"rev": "e9f00bd893984bc8ce46c895c3bf7cac95331127",
"type": "github"
}
},

View File

@ -2,7 +2,13 @@
description = "LEZ Explorer UI - A Qt block explorer for the Logos Execution Zone";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
# Pinned to the EXACT nixpkgs revision basecamp resolves via logos-nix, so this
# in-process `type: ui` module links the identical qtbase (6.9.2) and does not
# load a second QtCore into basecamp's process (which aborts with "Must construct
# a QApplication before a QWidget"). Matching the version string is not enough —
# the store path must match, so this must be re-pinned whenever basecamp bumps its
# logos-nix/nixpkgs lock.
nixpkgs.url = "github:NixOS/nixpkgs/e9f00bd893984bc8ce46c895c3bf7cac95331127";
};
outputs = { self, nixpkgs }: