{ stdenv, fetchurl, osinfo-db-tools, intltool, libxml2 }: stdenv.mkDerivation rec { name = "osinfo-db-20180531"; src = fetchurl { url = "https://releases.pagure.org/libosinfo/${name}.tar.xz"; sha256 = "0vw6hn7xdfj0q7wc3k9b0nvbghdp1b9dl63xz2v7frr55qv59m5x"; }; 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 ]; }; }