2024-01-02 11:29:13 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, callPackage
|
|
|
|
, autoPatchelfHook
|
|
|
|
, src
|
|
|
|
}:
|
|
|
|
|
|
|
|
(stdenv.mkDerivation {
|
|
|
|
inherit (src) name;
|
|
|
|
inherit src;
|
|
|
|
|
|
|
|
nativeBuildInputs = lib.optional stdenv.hostPlatform.isLinux autoPatchelfHook;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
mkdir -p "$out/bin"
|
|
|
|
cp -r . "$out/bin/cache"
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
}).overrideAttrs (
|
2024-02-07 01:22:34 +00:00
|
|
|
if builtins.pathExists (./overrides + "/${src.flutterPlatform}.nix")
|
|
|
|
then callPackage (./overrides + "/${src.flutterPlatform}.nix") { }
|
2024-01-02 11:29:13 +00:00
|
|
|
else ({ ... }: { })
|
|
|
|
)
|