osinfo-db-tools: 1.9.0 → 1.10.0
https://gitlab.com/libosinfo/osinfo-db-tools/-/blob/v1.10.0/NEWS - Switch to libsoup3 - Add meta.changelog - Format the expression with nixpgks-fmt
This commit is contained in:
@@ -1,22 +1,55 @@
|
||||
{ lib, stdenv, fetchurl, pkg-config, meson, ninja, gettext, glib, libxml2, perl, python3
|
||||
, libxslt, libarchive, bzip2, xz, json-glib, libsoup
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, pkg-config
|
||||
, meson
|
||||
, ninja
|
||||
, gettext
|
||||
, glib
|
||||
, libxml2
|
||||
, perl
|
||||
, python3
|
||||
, libxslt
|
||||
, libarchive
|
||||
, bzip2
|
||||
, xz
|
||||
, json-glib
|
||||
, libsoup_3
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "osinfo-db-tools";
|
||||
version = "1.9.0";
|
||||
version = "1.10.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://releases.pagure.org/libosinfo/${pname}-${version}.tar.xz";
|
||||
sha256 = "sha256-JV8ch4us7HDDAg/1qcsPa9hhygAJ8kYI31729i1SQ8A=";
|
||||
sha256 = "sha256-gCzdU7QWcG6lhE8Ebdz7ZYwbSQa5+UDHmserxQmBymg=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ meson ninja pkg-config gettext perl python3 ];
|
||||
buildInputs = [ glib json-glib libxml2 libxslt libarchive bzip2 xz libsoup ];
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
gettext
|
||||
perl
|
||||
python3
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
glib
|
||||
json-glib
|
||||
libxml2
|
||||
libxslt
|
||||
libarchive
|
||||
bzip2
|
||||
xz
|
||||
libsoup_3
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tools for managing the osinfo database";
|
||||
homepage = "https://libosinfo.org/";
|
||||
changelog = "https://gitlab.com/libosinfo/osinfo-db-tools/-/blob/v${version}/NEWS";
|
||||
license = licenses.lgpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.bjornfor ];
|
||||
|
||||
Reference in New Issue
Block a user