nixpkgs/pkgs/development/tools/parsing/ragel/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

50 lines
1.2 KiB
Nix

{ stdenv, fetchurl, transfig, tex, ghostscript, colm
, build-manual ? false
}:
let
generic = { version, sha256, license }:
stdenv.mkDerivation rec {
name = "ragel-${version}";
src = fetchurl {
url = "https://www.colm.net/files/ragel/${name}.tar.gz";
inherit sha256;
};
buildInputs = stdenv.lib.optional build-manual [ transfig ghostscript tex ];
preConfigure = stdenv.lib.optional build-manual ''
sed -i "s/build_manual=no/build_manual=yes/g" DIST
'';
configureFlags = [ "--with-colm=${colm}" ];
NIX_CFLAGS_COMPILE = stdenv.lib.optional stdenv.cc.isGNU "-std=gnu++98";
doCheck = true;
meta = with stdenv.lib; {
homepage = https://www.colm.net/open-source/ragel/;
description = "State machine compiler";
inherit license;
platforms = platforms.unix;
maintainers = with maintainers; [ pSub ];
};
};
in
{
ragelStable = generic {
version = "6.10";
sha256 = "0gvcsl62gh6sg73nwaxav4a5ja23zcnyxncdcdnqa2yjcpdnw5az";
license = stdenv.lib.licenses.gpl2;
};
ragelDev = generic {
version = "7.0.0.11";
sha256 = "0h2k9bfz9i7x9mvr9rbsrzz8fk17756zwwrkf3fppvm9ivzwdfh8";
license = stdenv.lib.licenses.mit;
};
}