e6a3b5392d
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 20180311 with grep in /nix/store/2a26a2ic31kvg85krsqn5j1jnndhm70l-osinfo-db-20180311 - found 20180311 in filename of file in /nix/store/2a26a2ic31kvg85krsqn5j1jnndhm70l-osinfo-db-20180311
27 lines
751 B
Nix
27 lines
751 B
Nix
{ stdenv, fetchurl, osinfo-db-tools, intltool, libxml2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "osinfo-db-20180311";
|
|
|
|
src = fetchurl {
|
|
url = "https://releases.pagure.org/libosinfo/${name}.tar.xz";
|
|
sha256 = "0pzm9vsr2f5943nlp2ljm19czcys5pvq6hjxh0ja2vx74pwhylb6";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|