summary refs log tree commit diff
path: root/pkgs/tools/misc/osinfo-db-tools/default.nix
blob: bd7b036a65a14637c19e225e4a2c3b39a181bab3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl, pkgconfig, intltool, glib, libxml2
, libxslt, libarchive, bzip2, lzma, json-glib
}:

stdenv.mkDerivation rec {
  pname = "osinfo-db-tools";
  version = "1.4.0";

  src = fetchurl {
    url = "https://releases.pagure.org/libosinfo/${pname}-${version}.tar.gz";
    sha256 = "08zpjq1g27n6wmmqwxws95w045warhg9bxcv1phvkdcrddf15q3y";
  };

  nativeBuildInputs = [ pkgconfig intltool ];
  buildInputs = [ glib json-glib libxml2 libxslt libarchive bzip2 lzma ];

  meta = with stdenv.lib; {
    description = "Tools for managing the osinfo database";
    homepage = https://libosinfo.org/;
    license = licenses.lgpl2Plus;
    platforms = platforms.linux;
    maintainers = [ maintainers.bjornfor ];
  };
}