remove jdnbtexplorer

This commit is contained in:
xunuwu 2025-05-28 06:19:12 +02:00
parent 05deb12d98
commit c4a67e8c75
2 changed files with 0 additions and 55 deletions

View file

@ -1,6 +1,5 @@
{pkgs, ...}: {
packages = {
jdnbtexplorer = pkgs.qt6Packages.callPackage ./jdnbtexplorer {};
binaryninja-personal = pkgs.qt6Packages.callPackage ./binaryninja-personal {};
krunker = pkgs.callPackage ./krunker {};
ida-pro = pkgs.callPackage ./ida-pro {};

View file

@ -1,54 +0,0 @@
{
lib,
python3,
which,
qttools,
}: let
myPython = python3.withPackages (pkgs:
with pkgs; [
pyqt6
pyside6
(myPython.pkgs.buildPythonPackage rec {
pname = "NBT";
version = "1.5.1";
src = myPython.pkgs.fetchPypi {
inherit pname version;
hash = "sha256-2juyE3YFy53+dEbxPxmzrn+vkg1DCjh/t4794n9mNsU=";
};
})
]);
in
myPython.pkgs.buildPythonPackage rec {
pname = "jdNBTExplorer";
version = "2.0";
format = "pyproject";
src = builtins.fetchGit {
url = "https://codeberg.org/JakobDev/jdNBTExplorer";
rev = "e70c9b030f88340b565c22759b6efd97172be551";
};
nativeBuildInputs = [
myPython
which
qttools
];
propagatedBuildInputs = [
myPython
];
dontWrapQtApps = true;
preFixup = ''
qtWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
meta = with lib; {
changelog = "https://codeberg.org/JakobDev/jdNBTExplorer/releases/tag/${version}";
description = "An Editor for Minecraft NBT files";
homepage = "https://codeberg.org/JakobDev/jdNBTExplorer";
license = licenses.gpl3Only;
};
}