mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
2ac2c8cc3c
ocamlPackages.asai: 0.1.1 → 0.3.0 ocamlPackages.yuujinchou: 5.1.0 → 5.2.0
27 lines
558 B
Nix
27 lines
558 B
Nix
{ lib, fetchFromGitHub, buildDunePackage
|
|
, algaeff
|
|
, bwd
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "asai";
|
|
version = "0.3.0";
|
|
src = fetchFromGitHub {
|
|
owner = "RedPRL";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-Rp4TvSbRz+5+X4XJ1tKUDDgldpLzHHtaF7G7AG6HgKU=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
algaeff
|
|
bwd
|
|
];
|
|
|
|
meta = {
|
|
description = "Library for constructing and printing compiler diagnostics";
|
|
homepage = "https://redprl.org/asai/asai/";
|
|
license = lib.licenses.asl20;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
};
|
|
}
|