Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bitbox: init at 4.39.0 #267064

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19707,6 +19707,12 @@
githubId = 2084639;
name = "Manu";
};
tensor5 = {
github = "tensor5";
githubId = 1545895;
matrix = "@tensor5:matrix.org";
name = "Nicola Squartini";
};
teozkr = {
email = "[email protected]";
github = "nightkr";
Expand Down
26 changes: 26 additions & 0 deletions pkgs/by-name/bi/bitbox/genassets.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
diff --git a/frontends/qt/Makefile b/frontends/qt/Makefile
index 5ab350554..49d07c0e0 100644
--- a/frontends/qt/Makefile
+++ b/frontends/qt/Makefile
@@ -16,7 +16,7 @@ include ../../env.mk.inc

base:
mkdir build
- ./genassets.sh
+ bash genassets.sh
qmake -set MACOS_MIN_VERSION $(MACOS_MIN_VERSION)
qmake -o build/Makefile
cd build && $(MAKE)
diff --git a/frontends/qt/genassets.sh b/frontends/qt/genassets.sh
index 4b1ba87be..b5a9ad279 100755
--- a/frontends/qt/genassets.sh
+++ b/frontends/qt/genassets.sh
@@ -20,7 +20,7 @@ if [ ! -d ../web/build ]; then
fi

echo '<!DOCTYPE RCC><RCC version="1.0"><qresource>' > assets.qrc
-/usr/bin/find ../web/build/ -maxdepth 3 -type f | sed -e "s|../web/build/||" | awk '{ print "<file alias=\"" $1 "\">../web/build/" $1 "</file>" '} >> assets.qrc
+find ../web/build/ -maxdepth 3 -type f | sort | sed -e "s|../web/build/||" | awk '{ print "<file alias=\"" $1 "\">../web/build/" $1 "</file>" '} >> assets.qrc
Aleksanaa marked this conversation as resolved.
Show resolved Hide resolved

echo '<file alias="trayicon.png">resources/trayicon.png</file>' >> assets.qrc
echo '</qresource></RCC>' >> assets.qrc
84 changes: 84 additions & 0 deletions pkgs/by-name/bi/bitbox/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
{
lib,
stdenv,
fetchFromGitHub,
buildNpmPackage,
clang,
go,
libsForQt5,
}:

stdenv.mkDerivation rec {
pname = "bitbox";
version = "4.45.0";

src = fetchFromGitHub {
owner = "BitBoxSwiss";
repo = "bitbox-wallet-app";
rev = "v${version}";
fetchSubmodules = true;
hash = "sha256-miy7uLNWvLacLOrlpsUE/nR/JNBkcueJX8/mX+abeAg=";
};

patches = [
./genassets.patch
];

postPatch = ''
substituteInPlace frontends/qt/resources/linux/usr/share/applications/bitbox.desktop \
--replace-fail 'Exec=BitBox %u' 'Exec=bitbox %u'
'';
Aleksanaa marked this conversation as resolved.
Show resolved Hide resolved

dontConfigure = true;

passthru.web = buildNpmPackage {
pname = "bitbox-web";
inherit version;
inherit src;
sourceRoot = "source/frontends/web";
npmDepsHash = "sha256-DylU/32t70r/wgjMDBMbaS7egU5DHx7ST7MlZp2zPiw=";
installPhase = "cp -r build $out";
};

buildPhase = ''
runHook preBuild

ln -s ${passthru.web} frontends/web/build
export GOCACHE=$TMPDIR/go-cache
make -C frontends/qt/server linux
make -C frontends/qt base

runHook postBuild
'';

installPhase = ''
runHook preInstall

mkdir $out
cp -r frontends/qt/resources/linux/usr/share $out
mkdir $out/{bin,lib}
cp frontends/qt/build/BitBox $out/bin/bitbox
cp frontends/qt/build/assets.rcc $out/bin
cp frontends/qt/server/libserver.so $out/lib
install -Dt $out/lib/udev/rules.d ${./rules.d}/*

runHook postInstall
'';

buildInputs = [ libsForQt5.qtwebengine ];

nativeBuildInputs = [
clang
go
libsForQt5.wrapQtAppsHook
];

meta = {
description = "Companion app for the BitBox02 hardware wallet";
homepage = "https://bitbox.swiss/app/";
license = lib.licenses.asl20;
mainProgram = "bitbox";
maintainers = [ lib.maintainers.tensor5 ];
platforms = [ "x86_64-linux" ];
};
}
1 change: 1 addition & 0 deletions pkgs/by-name/bi/bitbox/rules.d/51-hid-digitalbitbox.rules
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SUBSYSTEM=="usb", TAG+="uaccess", TAG+="udev-acl", SYMLINK+="dbb%n", ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="2402"
1 change: 1 addition & 0 deletions pkgs/by-name/bi/bitbox/rules.d/52-hid-digitalbitbox.rules
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="2402", TAG+="uaccess", TAG+="udev-acl", SYMLINK+="dbbf%n"
1 change: 1 addition & 0 deletions pkgs/by-name/bi/bitbox/rules.d/53-hid-bitbox02.rules
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SUBSYSTEM=="usb", TAG+="uaccess", TAG+="udev-acl", SYMLINK+="bitbox02_%n", ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="2403"
1 change: 1 addition & 0 deletions pkgs/by-name/bi/bitbox/rules.d/54-hid-bitbox02.rules
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="2403", TAG+="uaccess", TAG+="udev-acl", SYMLINK+="bitbox02-%n"