diff --git a/pkgs/by-name/ce/cef-binary/package.nix b/pkgs/by-name/ce/cef-binary/package.nix new file mode 100644 index 000000000000..060e935cfe88 --- /dev/null +++ b/pkgs/by-name/ce/cef-binary/package.nix @@ -0,0 +1,15 @@ +{ + libcef, +}: + +libcef.overrideAttrs (oldAttrs: { + pname = "cef-binary"; + + installPhase = '' + runHook preInstall + + cp -r .. $out + + runHook postInstall + ''; +})