indent: delete redundant preBuild

Builds fine for me without it.  Also use https homepage url.
This commit is contained in:
Joachim Fasting 2016-03-16 22:42:22 +01:00
parent 8e398a88a1
commit e524debaf0

View File

@ -7,16 +7,9 @@ stdenv.mkDerivation rec {
url = "mirror://gnu/indent/${name}.tar.gz";
sha256 = "0f9655vqdvfwbxvs1gpa7py8k1z71aqh8hp73f65vazwbfz436wa";
};
preBuild =
''
sed -e '/extern FILE [*]output/i#ifndef OUTPUT_DEFINED_ELSEWHERE' -i src/indent.h
sed -e '/extern FILE [*]output/a#endif' -i src/indent.h
sed -e '1i#define OUTPUT_DEFINED_ELSEWHERE 1' -i src/output.c
'';
meta = {
homepage = http://www.gnu.org/software/indent/;
homepage = https://www.gnu.org/software/indent/;
description = "A source code reformatter";
license = stdenv.lib.licenses.gpl3Plus;
};