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
57 lines
1.1 KiB
Nix
57 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
fltk,
|
|
giflib,
|
|
libjpeg,
|
|
libpng,
|
|
libXdmcp,
|
|
openssl,
|
|
pkg-config,
|
|
wget,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "dillo-plus";
|
|
version = "3.3.0-unstable-2025-01-18";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "crossbowerbt";
|
|
repo = "dillo-plus";
|
|
rev = "7d093e6bddcb3338938ea5959844e62ff1f9b76f";
|
|
hash = "sha256-7DZ+Ruu1sb+yKHSigdFEVe0xkrsQXSQ2esPhujD3Qrc=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
fltk
|
|
giflib
|
|
libjpeg
|
|
libpng
|
|
libXdmcp
|
|
openssl
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
makeFlags = [
|
|
"PREFIX=$(out)"
|
|
"DOWNLOADER_TOOL=${lib.getExe wget}"
|
|
"INSTALL=install"
|
|
];
|
|
|
|
meta = {
|
|
description = "Lightweight web browser based on Dillo but with many improvements, such as: support for http, https, gemini, gopher, epub, reader mode and more";
|
|
homepage = "https://github.com/crossbowerbt/dillo-plus";
|
|
changelog = "https://github.com/crossbowerbt/dillo-plus/blob/main/ChangeLog";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ fgaz ];
|
|
mainProgram = "dillo";
|
|
platforms = lib.platforms.all;
|
|
};
|
|
})
|