2021-01-26 21:49:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, openssl, pkg-config, autoreconfHook }:
|
2013-08-14 06:16:52 +00:00
|
|
|
|
2014-08-12 17:38:15 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "trousers";
|
2021-01-26 21:49:13 +00:00
|
|
|
version = "0.3.15";
|
2013-08-14 06:16:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "mirror://sourceforge/trousers/trousers/${version}/${pname}-${version}.tar.gz";
|
2021-01-26 21:49:13 +00:00
|
|
|
sha256 = "0zy7r9cnr2gvwr2fb1q4fc5xnvx405ymcbrdv7qsqwl3a4zfjnqy";
|
2013-08-14 06:16:52 +00:00
|
|
|
};
|
|
|
|
|
2021-01-26 21:49:13 +00:00
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
2017-09-05 21:26:13 +00:00
|
|
|
buildInputs = [ openssl ];
|
2013-08-14 06:16:52 +00:00
|
|
|
|
2014-10-13 23:53:35 +00:00
|
|
|
patches = [ ./allow-non-tss-config-file-owner.patch ];
|
|
|
|
|
|
|
|
configureFlags = [ "--disable-usercheck" ];
|
2013-08-14 06:16:52 +00:00
|
|
|
|
2023-02-19 19:23:32 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = toString [ "-DALLOW_NON_TSS_CONFIG_FILE" ];
|
2019-11-11 18:43:14 +00:00
|
|
|
enableParallelBuilding = true;
|
2015-04-25 09:36:38 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Trusted computing software stack";
|
2023-01-21 21:41:12 +00:00
|
|
|
homepage = "https://trousers.sourceforge.net/";
|
2019-11-11 18:43:14 +00:00
|
|
|
license = licenses.bsd3;
|
2014-04-22 12:04:36 +00:00
|
|
|
maintainers = [ maintainers.ak ];
|
2017-09-22 18:03:17 +00:00
|
|
|
platforms = platforms.linux;
|
2013-08-14 06:16:52 +00:00
|
|
|
};
|
|
|
|
}
|