mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
18 lines
348 B
Nix
18 lines
348 B
Nix
{ lib, buildDunePackage, angstrom }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "angstrom-unix";
|
|
|
|
inherit (angstrom) version src;
|
|
|
|
propagatedBuildInputs = [ angstrom ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
inherit (angstrom.meta) homepage license;
|
|
description = "Unix support for Angstrom";
|
|
maintainers = with lib.maintainers; [ romildo ];
|
|
};
|
|
}
|