mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
105 lines
2.5 KiB
Nix
105 lines
2.5 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
meson,
|
|
ninja,
|
|
desktop-file-utils,
|
|
glib,
|
|
gjs,
|
|
blueprint-compiler,
|
|
pkg-config,
|
|
gtk4,
|
|
gobject-introspection,
|
|
libadwaita,
|
|
webkitgtk,
|
|
coreutils,
|
|
makeShellWrapper,
|
|
wrapGAppsHook4,
|
|
glib-networking,
|
|
symlinkJoin,
|
|
extraDocsPackage ? [ ],
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "biblioteca";
|
|
version = "1.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "workbenchdev";
|
|
repo = "Biblioteca";
|
|
rev = "refs/tags/v${finalAttrs.version}";
|
|
fetchSubmodules = true;
|
|
hash = "sha256-zrrI3u4ukGN6eb/eK/aZG4gi/xtXciyRS+JX9Js9KEw=";
|
|
};
|
|
|
|
patches = [
|
|
./dont-use-flatpak.patch # From https://gitlab.archlinux.org/archlinux/packaging/packages/biblioteca/-/blob/main/biblioteca-no-flatpak.patch?ref_type=heads
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
desktop-file-utils
|
|
makeShellWrapper
|
|
gjs
|
|
wrapGAppsHook4
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
gtk4
|
|
gobject-introspection
|
|
libadwaita
|
|
webkitgtk
|
|
glib-networking
|
|
];
|
|
|
|
docPath = symlinkJoin {
|
|
name = "biblioteca-docs";
|
|
paths = [
|
|
gtk4.devdoc
|
|
glib.devdoc
|
|
libadwaita.devdoc
|
|
webkitgtk.devdoc
|
|
gobject-introspection.devdoc
|
|
] ++ extraDocsPackage;
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/meson.build \
|
|
--replace-fail "/app/bin/blueprint-compiler" "${lib.getExe blueprint-compiler}" \
|
|
|
|
patchShebangs .
|
|
|
|
substituteInPlace build-aux/build-index.js \
|
|
--replace-fail "/usr/bin/env -S gjs -m" "${coreutils}/bin/env -S ${gjs}/bin/gjs -m" \
|
|
--replace-fail "/app/share/doc" "${finalAttrs.docPath}/share/doc"
|
|
|
|
substituteInPlace src/Shortcuts.js \
|
|
--replace-fail "/app/share/doc" "${finalAttrs.docPath}/share/doc"
|
|
substituteInPlace src/window.blp \
|
|
--replace-fail "/app/share/doc" "${finalAttrs.docPath}/share/doc"
|
|
substituteInPlace src/window.js \
|
|
--replace-fail "/app/share/doc" "${finalAttrs.docPath}/share/doc"
|
|
'';
|
|
|
|
postInstall = ''
|
|
mv $out/bin/app.drey.Biblioteca $out/share/app.drey.Biblioteca/app.drey.Biblioteca
|
|
substituteInPlace $out/bin/biblioteca \
|
|
--replace-fail app.drey.Biblioteca $out/share/app.drey.Biblioteca/app.drey.Biblioteca
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
homepage = "https://apps.gnome.org/Biblioteca/";
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ bot-wxt1221 ];
|
|
license = lib.licenses.gpl3Only;
|
|
description = "Documentation viewer for GNOME";
|
|
mainProgram = "biblioteca";
|
|
};
|
|
})
|