Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
90 lines
2.3 KiB
Nix
90 lines
2.3 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
flutter327,
|
|
autoPatchelfHook,
|
|
buildGoModule,
|
|
libayatana-appindicator,
|
|
}:
|
|
|
|
let
|
|
version = "1.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "GopeedLab";
|
|
repo = "gopeed";
|
|
tag = "v${version}";
|
|
hash = "sha256-GUCc6GK1yhVbk3Ss1XnT23wtz22uTgdSSDfEdr4mMpA=";
|
|
};
|
|
|
|
metaCommon = {
|
|
description = "Modern download manager that supports all platforms";
|
|
homepage = "https://github.com/GopeedLab/gopeed";
|
|
license = with lib.licenses; [ gpl3Plus ];
|
|
maintainers = [ ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
|
|
libgopeed = buildGoModule {
|
|
inherit version src;
|
|
pname = "libgopeed";
|
|
|
|
vendorHash = "sha256-7SPTMeaHvqTZJQYPoGUGRudNRTcsEl/8AKgI6W/XCJQ=";
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
mkdir -p $out/lib $out/bin
|
|
go build -tags nosqlite -ldflags="-w -s -X github.com/GopeedLab/gopeed/pkg/base.Version=v${version}" -buildmode=c-shared -o $out/lib/libgopeed.so github.com/GopeedLab/gopeed/bind/desktop
|
|
go build -ldflags="-w -s" -o $out/bin/host github.com/GopeedLab/gopeed/cmd/host
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
meta = metaCommon;
|
|
};
|
|
in
|
|
flutter327.buildFlutterApplication {
|
|
inherit version src;
|
|
pname = "gopeed";
|
|
|
|
sourceRoot = "${src.name}/ui/flutter";
|
|
|
|
pubspecLock = lib.importJSON ./pubspec.lock.json;
|
|
|
|
gitHashes = {
|
|
install_plugin = "sha256-3FM08D2pbtWmitf8R4pAylVqum7IfbWh6pOIEhJdySk=";
|
|
permission_handler_windows = "sha256-MRTmuH0MfhGaMEb9bRotimAPRlFyl3ovtJUJ2WK7+DA=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoPatchelfHook ];
|
|
|
|
buildInputs = [ libayatana-appindicator ];
|
|
|
|
preBuild = ''
|
|
mkdir -p linux/bundle/lib
|
|
cp ${libgopeed}/lib/libgopeed.so linux/bundle/lib/libgopeed.so
|
|
cp ${libgopeed}/bin/host assets/exec/host
|
|
'';
|
|
|
|
postInstall = ''
|
|
install -Dm644 linux/assets/com.gopeed.Gopeed.desktop $out/share/applications/gopeed.desktop
|
|
install -Dm644 assets/icon/icon_512.png $out/share/icons/hicolor/512x512/apps/com.gopeed.Gopeed.png
|
|
install -Dm644 assets/icon/icon_1024.png $out/share/icons/hicolor/1024x1024/apps/com.gopeed.Gopeed.png
|
|
'';
|
|
|
|
preFixup = ''
|
|
patchelf --add-needed libgopeed.so \
|
|
--add-rpath $out/app/gopeed/lib $out/app/gopeed/gopeed
|
|
'';
|
|
|
|
passthru = {
|
|
inherit libgopeed;
|
|
updateScript = ./update.sh;
|
|
};
|
|
|
|
meta = metaCommon // {
|
|
mainProgram = "gopeed";
|
|
};
|
|
}
|