about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/trousers/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/security/trousers/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/security/trousers/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/security/trousers/default.nix b/nixpkgs/pkgs/tools/security/trousers/default.nix
new file mode 100644
index 000000000000..16536409b5e6
--- /dev/null
+++ b/nixpkgs/pkgs/tools/security/trousers/default.nix
@@ -0,0 +1,29 @@
+{ lib, stdenv, fetchurl, openssl, pkg-config, autoreconfHook }:
+
+stdenv.mkDerivation rec {
+  pname = "trousers";
+  version = "0.3.15";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/trousers/trousers/${version}/${pname}-${version}.tar.gz";
+    sha256 = "0zy7r9cnr2gvwr2fb1q4fc5xnvx405ymcbrdv7qsqwl3a4zfjnqy";
+  };
+
+  nativeBuildInputs = [ pkg-config autoreconfHook ];
+  buildInputs = [ openssl ];
+
+  patches = [ ./allow-non-tss-config-file-owner.patch ];
+
+  configureFlags = [ "--disable-usercheck" ];
+
+  NIX_CFLAGS_COMPILE = [ "-DALLOW_NON_TSS_CONFIG_FILE" ];
+  enableParallelBuilding = true;
+
+  meta = with lib; {
+    description = "Trusted computing software stack";
+    homepage    = "http://trousers.sourceforge.net/";
+    license     = licenses.bsd3;
+    maintainers = [ maintainers.ak ];
+    platforms   = platforms.linux;
+  };
+}