summary refs log tree commit diff
path: root/pkgs/tools/security/libtpms
diff options
context:
space:
mode:
authorArthur Gautier <baloo@superbaloo.net>2021-03-03 18:59:28 +0000
committerGitHub <noreply@github.com>2021-03-03 13:59:28 -0500
commit1cd06e59e05975681013af60952856d62035820c (patch)
treeeccf6632de338f3419e488770ec170e355925f8a /pkgs/tools/security/libtpms
parent3371fe2c9b1d3b6a25e19a75cac645a900885cd5 (diff)
downloadnixpkgs-1cd06e59e05975681013af60952856d62035820c.tar
nixpkgs-1cd06e59e05975681013af60952856d62035820c.tar.gz
nixpkgs-1cd06e59e05975681013af60952856d62035820c.tar.bz2
nixpkgs-1cd06e59e05975681013af60952856d62035820c.tar.lz
nixpkgs-1cd06e59e05975681013af60952856d62035820c.tar.xz
nixpkgs-1cd06e59e05975681013af60952856d62035820c.tar.zst
nixpkgs-1cd06e59e05975681013af60952856d62035820c.zip
libtpms: 0.7.4 -> 0.8.0 (#114491)
* libtpms: 0.7.4 -> 0.8.0

* libtpms: tpm2 support is out of experimental

Since db80bd9ea16894a1902c3ab787aea9d58e7d1e85 commit, tpm2 support is
not experimental anymore

Signed-off-by: Arthur Gautier <baloo@superbaloo.net>

* libtpms: remove extraneous output

Nothing was put in the $out output, remove the $lib and put everything
that was in it in the $out.

Signed-off-by: Arthur Gautier <baloo@superbaloo.net>

Co-authored-by: R. RyanTM <ryantm-bot@ryantm.com>
Diffstat (limited to 'pkgs/tools/security/libtpms')
-rw-r--r--pkgs/tools/security/libtpms/default.nix10
1 files changed, 4 insertions, 6 deletions
diff --git a/pkgs/tools/security/libtpms/default.nix b/pkgs/tools/security/libtpms/default.nix
index 71966a934d6..67228be6741 100644
--- a/pkgs/tools/security/libtpms/default.nix
+++ b/pkgs/tools/security/libtpms/default.nix
@@ -3,18 +3,17 @@
 , fetchFromGitHub
 , pkg-config, autoreconfHook
 , openssl, perl
-, tpm2Support ? false
 }:
 
 stdenv.mkDerivation rec {
   pname = "libtpms";
-  version = "0.7.4";
+  version = "0.8.0";
 
   src = fetchFromGitHub {
     owner = "stefanberger";
     repo = "libtpms";
     rev = "v${version}";
-    sha256 = "sha256-nZSBD3WshlZHVMBFmDBBdFkhBjNgtASfg6+lYOOAhZ8=";
+    sha256 = "sha256-/zvMXdAOb4J3YaqdVJvTUI1/JFC0OKwgiYwYgYB62Y4=";
   };
 
   nativeBuildInputs = [
@@ -24,14 +23,13 @@ stdenv.mkDerivation rec {
   ];
   buildInputs = [ openssl ];
 
-  outputs = [ "out" "lib" "man" "dev" ];
+  outputs = [ "out" "man" "dev" ];
 
   enableParallelBuilding = true;
 
   configureFlags = [
     "--with-openssl"
-  ] ++ lib.optionals tpm2Support [
-    "--with-tpm2" # TPM2 support is flagged experimental by upstream
+    "--with-tpm2"
   ];
 
   meta = with lib; {