2017-12-19 06:59:33 +01:00
|
|
|
{ stdenv, fetchurl, osinfo-db-tools, intltool, libxml2 }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-12-15 04:53:32 +01:00
|
|
|
name = "osinfo-db-20181203";
|
2017-12-19 06:59:33 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://releases.pagure.org/libosinfo/${name}.tar.xz";
|
2018-12-15 04:53:32 +01:00
|
|
|
sha256 = "1wimbj3hqp3ni91l7drj24i7z7xxfdpn6svf1szk9qd93cxc65q2";
|
2017-12-19 06:59:33 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ osinfo-db-tools intltool libxml2 ];
|
|
|
|
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
osinfo-db-import --dir "$out/share/osinfo" "${src}"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Osinfo database of information about operating systems for virtualization provisioning tools";
|
|
|
|
homepage = https://libosinfo.org/;
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
}
|