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

26 lines
761 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, osinfo-db-tools, gettext, libxml2 }:
2017-12-19 06:59:33 +01:00
stdenv.mkDerivation rec {
2019-03-01 22:19:36 +01:00
pname = "osinfo-db";
2021-03-14 19:02:43 +01:00
version = "20210312";
2017-12-19 06:59:33 +01:00
src = fetchurl {
2019-03-01 22:19:36 +01:00
url = "https://releases.pagure.org/libosinfo/${pname}-${version}.tar.xz";
2021-03-14 19:02:43 +01:00
sha256 = "sha256-dUjsCeRFynN4xc65njntyohX+Ck4MeCzy1WPQjCHDhA=";
2017-12-19 06:59:33 +01:00
};
2020-08-15 14:11:28 +02:00
nativeBuildInputs = [ osinfo-db-tools gettext libxml2 ];
2017-12-19 06:59:33 +01:00
installPhase = ''
osinfo-db-import --dir "$out/share/osinfo" "${src}"
'';
meta = with lib; {
2017-12-19 06:59:33 +01:00
description = "Osinfo database of information about operating systems for virtualization provisioning tools";
homepage = "https://gitlab.com/libosinfo/osinfo-db/";
2017-12-19 06:59:33 +01:00
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
};
}