Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / parsing / ragel / default.nix
blobdb5590ccbb96622ca2ae02425c766866b4935b48
1 { lib, stdenv, fetchurl, fig2dev, texliveSmall, ghostscript, colm
2 , build-manual ? false
3 }:
5 let
6   generic = { version, sha256, broken ? false, license }:
7     stdenv.mkDerivation rec {
8       pname = "ragel";
9       inherit version;
11       src = fetchurl {
12         url = "https://www.colm.net/files/ragel/${pname}-${version}.tar.gz";
13         inherit sha256;
14       };
16       buildInputs = lib.optionals build-manual [ fig2dev ghostscript texliveSmall ];
18       preConfigure = lib.optionalString build-manual ''
19         sed -i "s/build_manual=no/build_manual=yes/g" DIST
20       '';
22       configureFlags = [ "--with-colm=${colm}" ];
24       env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isGNU "-std=gnu++98";
26       doCheck = true;
28       enableParallelBuilding = true;
30       meta = with lib; {
31         homepage = "https://www.colm.net/open-source/ragel/";
32         description = "State machine compiler";
33         inherit broken license;
34         platforms = platforms.unix;
35         maintainers = with maintainers; [ pSub ];
36       };
37     };
42   ragelStable = generic {
43     version = "6.10";
44     sha256 = "0gvcsl62gh6sg73nwaxav4a5ja23zcnyxncdcdnqa2yjcpdnw5az";
45     license = lib.licenses.gpl2;
46   };
48   ragelDev = generic {
49     version = "7.0.0.12";
50     sha256 = "0x3si355lv6q051lgpg8bpclpiq5brpri5lv3p8kk2qhzfbyz69r";
51     license = lib.licenses.mit;
52     broken = stdenv.isDarwin;
53   };