4e42cac49d
This change was produced by searching for remaining occurrences of stdenv.lib and replacing them manually. Reference #108938.
20 lines
407 B
Nix
20 lines
407 B
Nix
{ lib, fetchFromGitHub, buildDunePackage, angstrom }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "angstrom-unix";
|
|
|
|
inherit (angstrom) version useDune2 src;
|
|
|
|
minimumOCamlVersion = "4.03";
|
|
|
|
propagatedBuildInputs = [ angstrom ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
inherit (angstrom.meta) homepage license;
|
|
description = "Unix support for Angstrom";
|
|
maintainers = with lib.maintainers; [ romildo ];
|
|
};
|
|
}
|