mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
49 lines
871 B
Nix
49 lines
871 B
Nix
{ lib, mkDerivation, fetchFromGitHub
|
|
, libkiwix
|
|
, pkg-config
|
|
, qmake
|
|
, qtbase
|
|
, qtwebengine
|
|
, qtsvg
|
|
, qtimageformats
|
|
, aria2
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kiwix";
|
|
version = "2.3.1-unstable-2024-02-20";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kiwix";
|
|
repo = "kiwix-desktop";
|
|
rev = "17ac566b07814aefb1decf108e4ba6d7ad9ef7bc";
|
|
hash = "sha256-BZzFnQE8/dyZkpY0X3zZ6yC6yLZ002Q/RoDzEhSOa/g=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
qmake
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
libkiwix
|
|
qtbase
|
|
qtwebengine
|
|
qtsvg
|
|
qtimageformats
|
|
];
|
|
|
|
qtWrapperArgs = [
|
|
"--prefix PATH : ${lib.makeBinPath [ aria2 ]}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Offline reader for Web content";
|
|
mainProgram = "kiwix-desktop";
|
|
homepage = "https://kiwix.org";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ ];
|
|
};
|
|
}
|