nixpkgs/pkgs/tools/text/source-highlight/default.nix
Eelco Dolstra eea9e405c8 source-highlight: Don't do a parallel build
The "make check" appears to have a race condition.

http://hydra.nixos.org/build/7116409
2013-12-16 17:03:19 +01:00

35 lines
788 B
Nix

{ stdenv, fetchurl, boost }:
let
name = "source-highlight";
version = "3.1.7";
in
stdenv.mkDerivation {
name = "${name}-${version}";
src = fetchurl {
url = "mirror://gnu/src-highlite/${name}-${version}.tar.gz";
sha256 = "1s49ld8cnpzhhwq0r7s0sfm3cg3nhhm0wla27lwraifrrl3y1cp1";
};
configureFlags = [ "--with-boost=${boost}" ];
buildInputs = [ boost ];
enableParallelBuilding = false;
doCheck = true;
meta = {
description = "Source code renderer with syntax highlighting";
homepage = http://www.gnu.org/software/src-highlite/;
license = "GPLv3+";
platforms = stdenv.lib.platforms.linux;
longDescription =
''
GNU Source-highlight, given a source file, produces a document
with syntax highlighting.
'';
};
}