mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
2976f43dd2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/osinfo-db/versions
27 lines
751 B
Nix
27 lines
751 B
Nix
{ stdenv, fetchurl, osinfo-db-tools, intltool, libxml2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "osinfo-db-20181203";
|
|
|
|
src = fetchurl {
|
|
url = "https://releases.pagure.org/libosinfo/${name}.tar.xz";
|
|
sha256 = "1wimbj3hqp3ni91l7drj24i7z7xxfdpn6svf1szk9qd93cxc65q2";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|