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 {
|
2014-10-13 23:53:35 +00:00
|
|
|
name = "trousers-${version}";
|
|
|
|
version = "0.3.13";
|
2013-08-14 06:16:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-10-13 23:53:35 +00:00
|
|
|
url = "mirror://sourceforge/trousers/trousers/${version}/${name}.tar.gz";
|
|
|
|
sha256 = "1lvnla1c1ig2w3xvvrqg2w9qm7a1ygzy1j2gg8j7p8c87i58x45v";
|
2013-08-14 06:16:52 +00:00
|
|
|
};
|
|
|
|
|
2015-04-25 09:36:38 +00:00
|
|
|
buildInputs = [ openssl pkgconfig ];
|
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
|
|
|
|
2015-06-12 22:40:48 +00:00
|
|
|
# Attempt to remove -std=gnu89 when updating if using gcc5
|
|
|
|
NIX_CFLAGS_COMPILE = "-std=gnu89 -DALLOW_NON_TSS_CONFIG_FILE";
|
2013-08-14 06:16:52 +00:00
|
|
|
NIX_LDFLAGS = "-lgcc_s";
|
|
|
|
|
2015-04-25 09:36:38 +00:00
|
|
|
# Fix broken libtool file
|
2015-05-11 22:03:07 +00:00
|
|
|
preFixup = stdenv.lib.optionalString (!stdenv.isDarwin) ''
|
2015-04-27 11:18:16 +00:00
|
|
|
sed 's,-lcrypto,-L${openssl.out}/lib -lcrypto,' -i $out/lib/libtspi.la
|
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";
|
2013-08-14 06:16:52 +00:00
|
|
|
homepage = http://trousers.sourceforge.net/;
|
2014-04-23 13:13:59 +00:00
|
|
|
license = licenses.cpl10;
|
2014-04-22 12:04:36 +00:00
|
|
|
maintainers = [ maintainers.ak ];
|
2013-08-14 06:16:52 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|
2014-08-12 17:38:15 +00:00
|
|
|
|