27 lines
796 B
Nix
27 lines
796 B
Nix
{ stdenv, fetchurl, osinfo-db-tools, gettext, libxml2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "osinfo-db";
|
|
version = "20200804";
|
|
|
|
src = fetchurl {
|
|
url = "https://releases.pagure.org/libosinfo/${pname}-${version}.tar.xz";
|
|
sha256 = "1gx8yky41kz2f03r7gvxgq8naysnrf8apsss61xqaxmmyd080z0v";
|
|
};
|
|
|
|
nativeBuildInputs = [ osinfo-db-tools gettext 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://gitlab.com/libosinfo/osinfo-db/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|