nixpkgs/pkgs/development/tools/parsing/ragel/default.nix

31 lines
811 B
Nix
Raw Normal View History

2016-02-15 18:34:31 +01:00
{stdenv, fetchurl, transfig, tex , ghostscript, colm, build-manual ? false
2014-11-07 00:31:21 +01:00
}:
2014-11-07 00:31:21 +01:00
stdenv.mkDerivation rec {
name = "ragel-${version}";
2016-02-15 18:29:44 +01:00
version = "7.0.0.6";
src = fetchurl {
url = "http://www.colm.net/files/ragel/${name}.tar.gz";
2016-02-15 18:29:44 +01:00
sha256 = "1ns3kbcvhinn4rwm54ajg49d1la8filxskl3rgbwws0irzw507vs";
};
2016-02-15 18:34:31 +01:00
buildInputs = stdenv.lib.optional build-manual [ transfig ghostscript tex ];
2014-11-07 00:31:21 +01:00
preConfigure = stdenv.lib.optional build-manual ''
sed -i "s/build_manual=no/build_manual=yes/g" DIST
'';
2016-02-15 18:29:44 +01:00
configureFlags = [ "--with-colm=${colm}" ];
doCheck = true;
2014-11-07 00:31:21 +01:00
meta = with stdenv.lib; {
homepage = http://www.complang.org/ragel;
description = "State machine compiler";
2014-11-07 00:31:21 +01:00
license = licenses.gpl2;
2016-06-18 02:56:44 +02:00
platforms = platforms.unix;
2014-11-07 00:31:21 +01:00
maintainers = with maintainers; [ pSub ];
};
}