mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
12 lines
232 B
Nix
12 lines
232 B
Nix
{ buildDunePackage, gluten, eio }:
|
|
|
|
buildDunePackage {
|
|
pname = "gluten-eio";
|
|
inherit (gluten) src version;
|
|
|
|
propagatedBuildInputs = [ gluten eio ];
|
|
|
|
meta = gluten.meta // {
|
|
description = "EIO runtime for gluten";
|
|
};
|
|
}
|