Files
nixpkgs/pkgs/by-name/li/libgepub/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

57 lines
964 B
Nix

{
lib,
stdenv,
fetchurl,
meson,
ninja,
pkg-config,
glib,
gobject-introspection,
gnome,
webkitgtk_4_1,
libsoup_3,
libxml2,
libarchive,
}:
stdenv.mkDerivation rec {
pname = "libgepub";
version = "0.7.3";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "WlZpWqipEy1nwHkqQPJSzgpI2dAytOGops6YrxT9Xhs=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
gobject-introspection
];
buildInputs = [
glib
webkitgtk_4_1
libsoup_3
libxml2
libarchive
];
doCheck = true;
passthru = {
updateScript = gnome.updateScript {
packageName = pname;
versionPolicy = "none";
};
};
meta = with lib; {
description = "GObject based library for handling and rendering epub documents";
license = licenses.lgpl21Plus;
platforms = platforms.linux;
teams = [ teams.gnome ];
};
}