mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
54 lines
1.2 KiB
Nix
54 lines
1.2 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 = "refs/tags/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";
|
|
mainProgram = "nitrokey-app";
|
|
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";
|
|
changelog = "https://github.com/Nitrokey/nitrokey-app/releases/tag/v${version}";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ kaiha panicgh ];
|
|
};
|
|
}
|