mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 14:27:45 +00:00
dillo-plus: init at 3.3.0
This commit is contained in:
parent
75ed009f22
commit
b7c28e202f
56
pkgs/by-name/di/dillo-plus/package.nix
Normal file
56
pkgs/by-name/di/dillo-plus/package.nix
Normal file
@ -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;
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user