mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +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.
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ lib, stdenv, fetchurl, libgpg-error, libassuan, libgcrypt, pkcs11helper,
|
|
pkg-config, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnupg-pkcs11-scd";
|
|
version = "0.10.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/alonbl/${pname}/releases/download/${pname}-${version}/${pname}-${version}.tar.bz2";
|
|
sha256 = "sha256-Kb8p53gPkhxtOhH2COKwSDwbtRDFr6hHMJAkndV8Ukk=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ pkcs11helper openssl ];
|
|
|
|
configureFlags = [
|
|
"--with-libgpg-error-prefix=${libgpg-error.dev}"
|
|
"--with-libassuan-prefix=${libassuan.dev}"
|
|
"--with-libgcrypt-prefix=${libgcrypt.dev}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A smart-card daemon to enable the use of PKCS#11 tokens with GnuPG";
|
|
mainProgram = "gnupg-pkcs11-scd";
|
|
longDescription = ''
|
|
gnupg-pkcs11 is a project to implement a BSD-licensed smart-card
|
|
daemon to enable the use of PKCS#11 tokens with GnuPG.
|
|
'';
|
|
homepage = "https://gnupg-pkcs11.sourceforge.net/";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ matthiasbeyer philandstuff ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|
|
|