nitrokey-app: 1.1 -> 1.2

This commit is contained in:
Kai Harries 2017-10-08 19:17:52 +02:00
parent ade98dc442
commit d01f0530ac

View File

@ -1,16 +1,18 @@
{ stdenv, cmake, fetchgit, hidapi, libusb1, pkgconfig, qt5 }: { stdenv, bash-completion, cmake, fetchgit, hidapi, libusb1, pkgconfig, qt5 }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "nitrokey-app"; name = "nitrokey-app";
version = "1.1"; version = "1.2";
# We use fetchgit instead of fetchFromGitHub because of necessary git submodules
src = fetchgit { src = fetchgit {
url = "https://github.com/Nitrokey/nitrokey-app.git"; url = "https://github.com/Nitrokey/nitrokey-app.git";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
sha256 = "11pz1p5qgghkr5f8s2wg34zqhxk2vq465i73w1h479j88x35rdp0"; sha256 = "0mm6vlgxlmpahmmcn4awnfpx5rx5bj8m44cywhgxlmz012x73hzi";
}; };
buildInputs = [ buildInputs = [
bash-completion
hidapi hidapi
libusb1 libusb1
qt5.qtbase qt5.qtbase
@ -20,7 +22,7 @@ stdenv.mkDerivation rec {
cmake cmake
pkgconfig pkgconfig
]; ];
cmakeFlags = "-DHAVE_LIBAPPINDICATOR=NO"; cmakeFlags = "-DCMAKE_BUILD_TYPE=Release";
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Provides extra functionality for the Nitrokey Pro and Storage"; description = "Provides extra functionality for the Nitrokey Pro and Storage";