mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
27 lines
563 B
Nix
27 lines
563 B
Nix
{ lib, fetchFromGitHub, buildDunePackage, qcheck-alcotest }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "yuujinchou";
|
|
version = "2.0.0";
|
|
|
|
minimalOCamlVersion = "4.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RedPRL";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256:1nhz44cyipy922anzml856532m73nn0g7iwkg79yzhq6yb87109w";
|
|
};
|
|
|
|
doCheck = true;
|
|
checkInputs = [ qcheck-alcotest ];
|
|
|
|
meta = {
|
|
description = "Name pattern combinators";
|
|
inherit (src.meta) homepage;
|
|
license = lib.licenses.asl20;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
};
|
|
}
|
|
|