mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
6edd6f71c7
There are two kinds of changes here: - removing explicit qttranslations path hardcoding from applications that were patched to do it - replacing qttranslations in buildInputs with qttools for packages that really depend on the latter After this, qttranslation is never used outside Qt itself, as it should.
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, cmake
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, wrapQtAppsHook
|
|
, libnitrokey
|
|
, cppcodec
|
|
, qttools
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nitrokey-app";
|
|
version = "1.4.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Nitrokey";
|
|
repo = "nitrokey-app";
|
|
rev = "v${version}";
|
|
hash = "sha256-c6EC5uuMna07xVHDRFq0UDwuSeopZTmZGZ9ZD5zaq8Y=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
wrapQtAppsHook
|
|
qttools
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DADD_GIT_INFO=OFF"
|
|
"-DBASH_COMPLETION_PATH=share/bash-completion/completions"
|
|
];
|
|
|
|
buildInputs = [
|
|
libnitrokey
|
|
cppcodec
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Provides extra functionality for the Nitrokey Pro and Storage";
|
|
longDescription = ''
|
|
The nitrokey-app provides a QT system tray widget with which 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";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ kaiha panicgh ];
|
|
};
|
|
}
|