nixpkgs/pkgs/data/misc/osinfo-db/default.nix

28 lines
779 B
Nix
Raw Normal View History

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";
2019-12-08 20:55:44 +00:00
version = "20191125";
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";
2019-12-08 20:55:44 +00:00
sha256 = "102mdykp5pjv7lw7saig640vb5a8ivy4ji8sa68q2wzfwg1yix78";
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";
homepage = https://libosinfo.org/;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
};
}