2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, osinfo-db-tools, gettext, libxml2 }:
|
2017-12-19 06:59:33 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-01 22:19:36 +01:00
|
|
|
pname = "osinfo-db";
|
2021-03-14 19:02:43 +01:00
|
|
|
version = "20210312";
|
2017-12-19 06:59:33 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-03-01 22:19:36 +01:00
|
|
|
url = "https://releases.pagure.org/libosinfo/${pname}-${version}.tar.xz";
|
2021-03-14 19:02:43 +01:00
|
|
|
sha256 = "sha256-dUjsCeRFynN4xc65njntyohX+Ck4MeCzy1WPQjCHDhA=";
|
2017-12-19 06:59:33 +01:00
|
|
|
};
|
|
|
|
|
2020-08-15 14:11:28 +02:00
|
|
|
nativeBuildInputs = [ osinfo-db-tools gettext libxml2 ];
|
2017-12-19 06:59:33 +01:00
|
|
|
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
osinfo-db-import --dir "$out/share/osinfo" "${src}"
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-12-19 06:59:33 +01:00
|
|
|
description = "Osinfo database of information about operating systems for virtualization provisioning tools";
|
2020-03-19 01:33:45 +01:00
|
|
|
homepage = "https://gitlab.com/libosinfo/osinfo-db/";
|
2017-12-19 06:59:33 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
}
|