mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
15 lines
257 B
Nix
15 lines
257 B
Nix
{ lib, buildDunePackage, ocaml_gettext, ounit }:
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "gettext-stub";
|
|
|
|
inherit (ocaml_gettext) src version meta;
|
|
|
|
propagatedBuildInputs = [ ocaml_gettext ];
|
|
|
|
doCheck = true;
|
|
|
|
checkInputs = lib.optional doCheck ounit;
|
|
}
|