4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl, trousers, openssl, opencryptoki, perl }:
|
|
|
|
let
|
|
version = "1.3.9.1";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "tpm-tools";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/trousers/tpm-tools/${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "0s7srgghykxnlb1g4izabzf2gfb1knxc0nzn6bly49h8cpi19dww";
|
|
};
|
|
|
|
sourceRoot = ".";
|
|
|
|
patches = [
|
|
(fetchurl {
|
|
url = "https://sources.debian.org/data/main/t/tpm-tools/1.3.9.1-0.1/debian/patches/05-openssl1.1_fix_data_mgmt.patch";
|
|
sha256 = "161yysw4wgy3spsz6p1d0ib0h5pnrqm8bdh1l71c4hz6a6wpcyxj";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ perl ];
|
|
buildInputs = [ trousers openssl opencryptoki ];
|
|
|
|
meta = with lib; {
|
|
description = "Management tools for TPM hardware";
|
|
longDescription = ''
|
|
tpm-tools is an open-source package designed to enable user and
|
|
application enablement of Trusted Computing using a Trusted Platform
|
|
Module (TPM), similar to a smart card environment.
|
|
'';
|
|
homepage = "https://sourceforge.net/projects/trousers/files/tpm-tools/";
|
|
license = licenses.cpl10;
|
|
maintainers = [ maintainers.ak ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|
|
|