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