convertlit: disable format hardening

This commit is contained in:
Robin Gloster 2016-08-03 20:04:28 +00:00
parent 847f9994e4
commit 7423e029a2

View File

@ -1,22 +1,24 @@
{stdenv, fetchurl, unzip, libtommath}: {stdenv, fetchzip, libtommath}:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "convertlit-1.8"; name = "convertlit-1.8";
src = fetchurl { src = fetchzip {
url = http://www.convertlit.com/convertlit18src.zip; url = http://www.convertlit.com/convertlit18src.zip;
sha256 = "1fjpwncyc2r3ipav7c9m7jxy6i7mphbyqj3gsm046425p7sqa2np"; sha256 = "182nsin7qscgbw2h92m0zadh3h8q410h5cza6v486yjfvla3dxjx";
stripRoot = false;
}; };
buildInputs = [unzip libtommath]; buildInputs = [libtommath];
sourceRoot = "."; hardeningDisable = [ "format" ];
buildPhase = '' buildPhase = ''
cd lib cd lib
make make
cd ../clit18 cd ../clit18
substituteInPlace Makefile --replace ../libtommath-0.30/libtommath.a -ltommath substituteInPlace Makefile \
--replace ../libtommath-0.30/libtommath.a -ltommath
make make
''; '';