3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/ocaml-modules/sedlex/2.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
1.7 KiB
Nix
Raw Normal View History

{ lib
2020-01-18 21:20:00 +00:00
, fetchFromGitHub
, fetchurl
, buildDunePackage
2020-01-18 21:20:00 +00:00
, ocaml
, gen
2021-04-16 05:20:00 +01:00
, ppxlib
2020-01-18 21:20:00 +00:00
, uchar
}:
2021-04-16 05:20:00 +01:00
if lib.versionOlder ocaml.version "4.08"
2020-01-18 21:20:00 +00:00
then throw "sedlex is not available for OCaml ${ocaml.version}"
else
let
unicodeVersion = "13.0.0";
baseUrl = "https://www.unicode.org/Public/${unicodeVersion}";
2020-01-18 21:20:00 +00:00
DerivedCoreProperties = fetchurl {
url = "${baseUrl}/ucd/DerivedCoreProperties.txt";
sha256 = "0j12x112cd8fpgazkc8izxnhhpia44p1m36ff8yapslxndcmzm55";
2020-01-18 21:20:00 +00:00
};
DerivedGeneralCategory = fetchurl {
url = "${baseUrl}/ucd/extracted/DerivedGeneralCategory.txt";
sha256 = "0w6mkz4w79k23bnmwgfxc4yqc2ypv8ilrjn6nk25hrafksbg00j5";
2020-01-18 21:20:00 +00:00
};
PropList = fetchurl {
url = "${baseUrl}/ucd/PropList.txt";
sha256 = "1ks0585wimygbk2wqi9hqg8gyl25iffvdad5vya1zgsxs8z5lns8";
2020-01-18 21:20:00 +00:00
};
in
buildDunePackage rec {
pname = "sedlex";
version = "2.4";
useDune2 = true;
2020-01-18 21:20:00 +00:00
src = fetchFromGitHub {
owner = "ocaml-community";
repo = "sedlex";
rev = "v${version}";
sha256 = "13g8az4zqg6hrnxmy3qrasslppzlag13dd1dsr8vlpg2vpfmfv6i";
2020-01-18 21:20:00 +00:00
};
propagatedBuildInputs = [
2021-04-16 05:20:00 +01:00
gen uchar ppxlib
];
2020-01-18 21:20:00 +00:00
preBuild = ''
rm src/generator/data/dune
2020-01-18 21:20:00 +00:00
ln -s ${DerivedCoreProperties} src/generator/data/DerivedCoreProperties.txt
ln -s ${DerivedGeneralCategory} src/generator/data/DerivedGeneralCategory.txt
ln -s ${PropList} src/generator/data/PropList.txt
'';
doCheck = true;
2020-01-18 21:20:00 +00:00
dontStrip = true;
meta = {
homepage = "https://github.com/ocaml-community/sedlex";
2021-04-16 05:20:00 +01:00
changelog = "https://github.com/ocaml-community/sedlex/raw/v${version}/CHANGES";
2020-01-18 21:20:00 +00:00
description = "An OCaml lexer generator for Unicode";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.marsam ];
2020-01-18 21:20:00 +00:00
};
}