2017-12-19 05:59:33 +00:00
|
|
|
{ stdenv, fetchurl, osinfo-db-tools, intltool, libxml2 }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-01 21:19:36 +00:00
|
|
|
pname = "osinfo-db";
|
2020-06-10 20:48:51 +01:00
|
|
|
version = "20200529";
|
2017-12-19 05:59:33 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-03-01 21:19:36 +00:00
|
|
|
url = "https://releases.pagure.org/libosinfo/${pname}-${version}.tar.xz";
|
2020-06-10 20:48:51 +01:00
|
|
|
sha256 = "0mbrf9j5wmjhc6jixvhp4jqyxixh1717lqrmzmipdg99xnzba81n";
|
2017-12-19 05:59:33 +00: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";
|
2020-03-19 00:33:45 +00:00
|
|
|
homepage = "https://gitlab.com/libosinfo/osinfo-db/";
|
2017-12-19 05:59:33 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
}
|