Merge pull request #270097 from fabaff/nitrokey-app-refactor

nitrokey-app: refactor
This commit is contained in:
Fabian Affolter 2023-11-30 08:58:54 +01:00 committed by GitHub
commit 0fe3e11ad0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "Nitrokey";
repo = "nitrokey-app";
rev = "v${version}";
rev = "refs/tags/v${version}";
hash = "sha256-c6EC5uuMna07xVHDRFq0UDwuSeopZTmZGZ9ZD5zaq8Y=";
};
@ -38,14 +38,15 @@ stdenv.mkDerivation rec {
];
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.
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 ];
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 ];
};
}