summary refs log tree commit diff
path: root/pkgs/tools/security/nitrokey-app/default.nix
blob: 38e083ba1316e88d5cf6b98c106d5f0e76685404 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ stdenv, cmake, fetchFromGitHub, libappindicator-gtk2, libnotify, libusb1, pkgconfig
, qt5 }:

stdenv.mkDerivation rec {
  name = "nitrokey-app";
  version = "0.4";

  src = fetchFromGitHub {
    owner = "Nitrokey";
    repo = "nitrokey-app";
    rev = "v${version}";
    sha256 = "0h131847pllsr7rk7nn8vlj74byb5f14cl9h3g3pmlq5zj8ylfkx";
  };

  buildInputs = [
    cmake
    libappindicator-gtk2
    libnotify
    libusb1
    pkgconfig
    qt5.qtbase
  ];
  patches = [
     ./FixInstallDestination.patch
     ./HeaderPath.patch
  ];
  meta = {
    description      = "Provides extra functionality for the Nitrokey Pro and Storage";
    longDescription  = ''
       The nitrokey-app provides a QT system tray widget with wich you can
       access the extra functionality of a Nitrokey Storage or Nitrokey Pro.
       See https://www.nitrokey.com/ for more information.
    '';
    homepage         = https://github.com/Nitrokey/nitrokey-app;
    repositories.git = https://github.com/Nitrokey/nitrokey-app.git;
    license          = stdenv.lib.licenses.gpl3;
    maintainer       = stdenv.lib.maintainers.kaiha;
  };
}