mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 21:33:07 +00:00
932941b79c
- remove trailing whitespace - use spaces for indentation
21 lines
639 B
Nix
21 lines
639 B
Nix
{ lib, fetchurl, ocamlPackages }:
|
|
|
|
ocamlPackages.buildDunePackage rec {
|
|
pname = "obelisk";
|
|
version = "0.5.2";
|
|
useDune2 = true;
|
|
src = fetchurl {
|
|
url = "https://github.com/Lelio-Brun/Obelisk/releases/download/v${version}/obelisk-v${version}.tbz";
|
|
sha256 = "0s86gkypyrkrp83xnay258ijri3yjwj3marsjnjf8mz58z0zd9g6";
|
|
};
|
|
|
|
buildInputs = with ocamlPackages; [ menhir re ];
|
|
|
|
meta = {
|
|
description = "A simple tool which produces pretty-printed output from a Menhir parser file (.mly)";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
homepage = "https://github.com/Lelio-Brun/Obelisk";
|
|
};
|
|
}
|