87f9c27ba9
GitOrigin-RevId: fe2ecaf706a5907b5e54d979fbde4924d84b65fc
19 lines
387 B
Nix
19 lines
387 B
Nix
{ lib, fetchFromGitHub, buildDunePackage, angstrom }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "angstrom-unix";
|
|
|
|
inherit (angstrom) version src;
|
|
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [ angstrom ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
inherit (angstrom.meta) homepage license;
|
|
description = "Unix support for Angstrom";
|
|
maintainers = with lib.maintainers; [ romildo ];
|
|
};
|
|
}
|