16 lines
171 B
Nix
16 lines
171 B
Nix
|
|
{
|
||
|
|
libcef,
|
||
|
|
}:
|
||
|
|
|
||
|
|
libcef.overrideAttrs (oldAttrs: {
|
||
|
|
pname = "cef-binary";
|
||
|
|
|
||
|
|
installPhase = ''
|
||
|
|
runHook preInstall
|
||
|
|
|
||
|
|
cp -r .. $out
|
||
|
|
|
||
|
|
runHook postInstall
|
||
|
|
'';
|
||
|
|
})
|