mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
22 lines
517 B
Nix
22 lines
517 B
Nix
{ lib, fetchFromGitHub, buildDunePackage }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "mparser";
|
|
version = "1.3";
|
|
useDune2 = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "murmour";
|
|
repo = "mparser";
|
|
rev = version;
|
|
sha256 = "16j19v16r42gcsii6a337zrs5cxnf12ig0vaysxyr7sq5lplqhkx";
|
|
};
|
|
|
|
meta = {
|
|
description = "A simple monadic parser combinator OCaml library";
|
|
license = lib.licenses.lgpl21Plus;
|
|
homepage = "https://github.com/murmour/mparser";
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
};
|
|
}
|