* GNU Indent updated to 2.2.10.

svn path=/nixpkgs/trunk/; revision=17990
This commit is contained in:
Eelco Dolstra
2009-10-28 13:11:09 +00:00
parent cb1b3a0dbe
commit cbfbaf736a
3 changed files with 25 additions and 29 deletions

View File

@@ -0,0 +1,23 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "indent-2.2.10";
src = fetchurl {
url = "ftp://ftp.gnu.org/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/;
description = "A source code reformatter";
license = "GPLv3+";
};
}