2015-04-25 10:36:38 +01:00
|
|
|
{ stdenv, fetchurl, openssl, pkgconfig }:
|
2013-08-14 07:16:52 +01:00
|
|
|
|
2014-08-12 18:38:15 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-10-14 00:53:35 +01:00
|
|
|
name = "trousers-${version}";
|
|
|
|
version = "0.3.13";
|
2013-08-14 07:16:52 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-10-14 00:53:35 +01:00
|
|
|
url = "mirror://sourceforge/trousers/trousers/${version}/${name}.tar.gz";
|
|
|
|
sha256 = "1lvnla1c1ig2w3xvvrqg2w9qm7a1ygzy1j2gg8j7p8c87i58x45v";
|
2013-08-14 07:16:52 +01:00
|
|
|
};
|
|
|
|
|
2015-04-25 10:36:38 +01:00
|
|
|
buildInputs = [ openssl pkgconfig ];
|
2013-08-14 07:16:52 +01:00
|
|
|
|
2014-10-14 00:53:35 +01:00
|
|
|
patches = [ ./allow-non-tss-config-file-owner.patch ];
|
|
|
|
|
|
|
|
configureFlags = [ "--disable-usercheck" ];
|
2013-08-14 07:16:52 +01:00
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE = "-DALLOW_NON_TSS_CONFIG_FILE";
|
|
|
|
NIX_LDFLAGS = "-lgcc_s";
|
|
|
|
|
2015-04-25 10:36:38 +01:00
|
|
|
# Fix broken libtool file
|
|
|
|
preFixup = ''
|
|
|
|
sed 's,-lcrypto,-L${openssl}/lib -lcrypto,' -i $out/lib/libtspi.la
|
|
|
|
'';
|
|
|
|
|
2013-08-14 07:16:52 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Trusted computing software stack";
|
2013-08-14 07:16:52 +01:00
|
|
|
homepage = http://trousers.sourceforge.net/;
|
2014-04-23 14:13:59 +01:00
|
|
|
license = licenses.cpl10;
|
2014-04-22 13:04:36 +01:00
|
|
|
maintainers = [ maintainers.ak ];
|
2013-08-14 07:16:52 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|
2014-08-12 18:38:15 +01:00
|
|
|
|