aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/misc/digitalbitbox/default.nix
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
committerMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
commitc4625b175f8200f643fd6e11010932ea44c78433 (patch)
treebce3f89888c8ac3991fa5569a878a9eab6801ccc /infra/libkookie/nixpkgs/pkgs/applications/misc/digitalbitbox/default.nix
parent49f735974dd103039ddc4cb576bb76555164a9e7 (diff)
parentd661aa56a8843e991261510c1bb28fdc2f6975ae (diff)
Add 'infra/libkookie/' from commit 'd661aa56a8843e991261510c1bb28fdc2f6975ae'
git-subtree-dir: infra/libkookie git-subtree-mainline: 49f735974dd103039ddc4cb576bb76555164a9e7 git-subtree-split: d661aa56a8843e991261510c1bb28fdc2f6975ae
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/applications/misc/digitalbitbox/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/applications/misc/digitalbitbox/default.nix143
1 files changed, 143 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/applications/misc/digitalbitbox/default.nix b/infra/libkookie/nixpkgs/pkgs/applications/misc/digitalbitbox/default.nix
new file mode 100644
index 000000000000..95159d1927ab
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/applications/misc/digitalbitbox/default.nix
@@ -0,0 +1,143 @@
+{ stdenv
+, autoreconfHook
+, curl
+, fetchFromGitHub
+, git
+, libevent
+, libtool
+, qrencode
+, udev
+, libusb-compat-0_1
+, makeWrapper
+, pkgconfig
+, qtbase
+, qttools
+, qtwebsockets
+, qtmultimedia
+, udevRule51 ? ''
+, SUBSYSTEM=="usb", TAG+="uaccess", TAG+="udev-acl", SYMLINK+="dbb%n", ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="2402"
+, ''
+, udevRule52 ? ''
+, KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="2402", TAG+="uaccess", TAG+="udev-acl", SYMLINK+="dbbf%n"
+, ''
+, writeText
+}:
+
+# Enabling the digitalbitbox program
+#
+# programs.digitalbitbox.enable = true;
+#
+# will install the digitalbitbox package and enable the corresponding hardware
+# module and is by far the easiest way to get started with the Digital Bitbox on
+# NixOS.
+
+# In case you install the package only, please be aware that you may need to
+# apply some udev rules to allow the application to identify and access your
+# wallet. In a nixos-configuration, one may accomplish this by enabling the
+# digitalbitbox hardware module
+#
+# hardware.digitalbitbox.enable = true;
+#
+# or by adding the digitalbitbox package to system.udev.packages
+#
+# system.udev.packages = [ pkgs.digitalbitbox ];
+
+# See https://digitalbitbox.com/start_linux for more information.
+let
+ copyUdevRuleToOutput = name: rule:
+ "cp ${writeText name rule} $out/etc/udev/rules.d/${name}";
+in stdenv.mkDerivation rec {
+ pname = "digitalbitbox";
+ version = "2.2.2";
+
+ src = fetchFromGitHub {
+ owner = "digitalbitbox";
+ repo = "dbb-app";
+ rev = "v${version}";
+ sha256 = "1r77fvqrlaryzij5dfbnigzhvg1d12g96qb2gp8dy3xph1j0k3s1";
+ };
+
+ nativeBuildInputs = with stdenv.lib; [
+ autoreconfHook
+ curl
+ git
+ makeWrapper
+ pkgconfig
+ qttools
+ ];
+
+ buildInputs = [
+ libevent
+ libtool
+ udev
+ libusb-compat-0_1
+ qrencode
+
+ qtbase
+ qtwebsockets
+ qtmultimedia
+ ];
+
+ LUPDATE="${qttools.dev}/bin/lupdate";
+ LRELEASE="${qttools.dev}/bin/lrelease";
+ MOC="${qtbase.dev}/bin/moc";
+ QTDIR=qtbase.dev;
+ RCC="${qtbase.dev}/bin/rcc";
+ UIC="${qtbase.dev}/bin/uic";
+
+ configureFlags = [
+ "--enable-libusb"
+ ];
+
+ hardeningDisable = [
+ "format"
+ ];
+
+ postInstall = ''
+ mkdir -p "$out/lib"
+ cp src/libbtc/.libs/*.so* $out/lib
+ cp src/libbtc/src/secp256k1/.libs/*.so* $out/lib
+ cp src/hidapi/libusb/.libs/*.so* $out/lib
+ cp src/univalue/.libs/*.so* $out/lib
+
+ # [RPATH][patchelf] Avoid forbidden reference error
+ rm -rf $PWD
+
+ wrapProgram "$out/bin/dbb-cli" --prefix LD_LIBRARY_PATH : "$out/lib"
+ wrapProgram "$out/bin/dbb-app" --prefix LD_LIBRARY_PATH : "$out/lib"
+
+ # Provide udev rules as documented in https://digitalbitbox.com/start_linux
+ mkdir -p "$out/etc/udev/rules.d"
+ ${copyUdevRuleToOutput "51-hid-digitalbox.rules" udevRule51}
+ ${copyUdevRuleToOutput "52-hid-digitalbox.rules" udevRule52}
+ '';
+
+ enableParallelBuilding = true;
+
+ meta = with stdenv.lib; {
+ description = "A QT based application for the Digital Bitbox hardware wallet";
+ longDescription = ''
+ Digital Bitbox provides dbb-app, a GUI tool, and dbb-cli, a CLI tool, to manage Digital Bitbox devices.
+
+ This package will only install the dbb-app and dbb-cli, however; in order for these applications to identify and access Digital Bitbox devices, one may want to enable the digitalbitbox hardware module by adding
+
+ hardware.digitalbitbox.enable = true;
+
+ to the configuration which is equivalent to adding this package to the udev.packages list.
+
+
+ The easiest way to use the digitalbitbox package in NixOS is by adding
+
+ programs.digitalbitbox.enable = true;
+
+ to the configuration which installs the package and enables the hardware module.
+ '';
+ homepage = "https://digitalbitbox.com/";
+ license = licenses.mit;
+ maintainers = with maintainers; [
+ vidbina
+ ];
+ platforms = platforms.linux;
+ broken = true;
+ };
+}