bino3d: 2.5 -> 2.6, fix build, move to by-name (#476484)

This commit is contained in:
Gergő Gutyina
2026-01-26 00:40:15 +00:00
committed by GitHub
2 changed files with 13 additions and 17 deletions
@@ -1,25 +1,23 @@
{
lib,
stdenv,
fetchgit,
fetchFromGitHub,
cmake,
ninja,
pkg-config,
pandoc,
wrapQtAppsHook,
qtbase,
qtmultimedia,
qttools,
qt6,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "bino";
version = "2.5";
pname = "bino3d";
version = "2.6";
src = fetchgit {
url = "https://git.marlam.de/git/bino.git";
rev = "bino-${finalAttrs.version}";
hash = "sha256-vGPbSYTfRy414xVcLIvOnN4Te36HWVz7DQegNhYb3u4=";
src = fetchFromGitHub {
owner = "marlam";
repo = "bino";
tag = "bino-${finalAttrs.version}";
hash = "sha256-izgiAmMou/EW5KOzC8HuPaH4uVFLajoDhVwkJkzXdP0=";
};
nativeBuildInputs = [
@@ -27,13 +25,13 @@ stdenv.mkDerivation (finalAttrs: {
ninja
pkg-config
pandoc
wrapQtAppsHook
qt6.wrapQtAppsHook
];
buildInputs = [
qtbase
qtmultimedia
qttools
qt6.qtbase
qt6.qtmultimedia
qt6.qttools
# The optional QVR dependency is not currently packaged.
];
-2
View File
@@ -9983,8 +9983,6 @@ with pkgs;
bfcal = libsForQt5.callPackage ../applications/misc/bfcal { };
bino3d = qt6Packages.callPackage ../applications/video/bino3d { };
bitlbee = callPackage ../applications/networking/instant-messengers/bitlbee { };
bitlbee-plugins = callPackage ../applications/networking/instant-messengers/bitlbee/plugins.nix { };