2015-04-25 09:36:38 +00:00
|
|
|
{ stdenv, fetchurl, openssl, pkgconfig }:
|
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";
|
2019-11-11 18:43:14 +00:00
|
|
|
version = "0.3.14";
|
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";
|
2019-11-11 18:43:14 +00:00
|
|
|
sha256 = "0iwgsbrbb7nfqgl61x8aailwxm8akxh9gkcwxhsvf50x4qx72l6f";
|
2013-08-14 06:16:52 +00:00
|
|
|
};
|
|
|
|
|
2019-11-11 18:43:14 +00:00
|
|
|
sourceRoot = ".";
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
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
|
|
|
|
2019-11-11 18:43:14 +00:00
|
|
|
NIX_CFLAGS_COMPILE = [ "-DALLOW_NON_TSS_CONFIG_FILE" ];
|
|
|
|
enableParallelBuilding = true;
|
2015-04-25 09:36:38 +00:00
|
|
|
|
2013-08-14 06:16:52 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Trusted computing software stack";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://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
|
|
|
};
|
|
|
|
}
|