Skip to content

Commit

Permalink
dillo-plus: init at 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fgaz committed Oct 7, 2024
1 parent 75ed009 commit b7c28e2
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions pkgs/by-name/di/dillo-plus/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
lib,
stdenv,
fetchFromGitHub,
fltk,
giflib,
libjpeg,
libpng,
libXdmcp,
openssl,
pkg-config,
wget,
}:

stdenv.mkDerivation (finalAttrs: {
pname = "dillo-plus";
version = "3.3.0";

src = fetchFromGitHub {
owner = "crossbowerbt";
repo = "dillo-plus";
rev = "v${finalAttrs.version}";
hash = "sha256-NLerc1GXTdzuGVshXn7faK4vOu7wDVMiQNTljOF7OhA=";
};

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;
};
})

0 comments on commit b7c28e2

Please sign in to comment.