osinfo-db: 20211216 → 20220214
https://gitlab.com/libosinfo/osinfo-db/-/commits/v20220214
This commit is contained in:
parent
f90aab6b42
commit
9a6974d579
1 changed files with 15 additions and 4 deletions
|
@ -1,15 +1,25 @@
|
|||
{ lib, stdenv, fetchurl, osinfo-db-tools, gettext, libxml2 }:
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, osinfo-db-tools
|
||||
, gettext
|
||||
, libxml2
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "osinfo-db";
|
||||
version = "20211216";
|
||||
version = "20220214";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://releases.pagure.org/libosinfo/${pname}-${version}.tar.xz";
|
||||
sha256 = "sha256-CeznsOUhMw4x0SpZFx408JcYGny7zW+M1J+SiSO7EII=";
|
||||
sha256 = "sha256-E+bJAOuCAPFmD4oe13Xs7NWgH9skv7bu4c5l3XvP06k=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ osinfo-db-tools gettext libxml2 ];
|
||||
nativeBuildInputs = [
|
||||
osinfo-db-tools
|
||||
gettext
|
||||
libxml2
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
osinfo-db-import --dir "$out/share/osinfo" "${src}"
|
||||
|
@ -18,6 +28,7 @@ stdenv.mkDerivation rec {
|
|||
meta = with lib; {
|
||||
description = "Osinfo database of information about operating systems for virtualization provisioning tools";
|
||||
homepage = "https://gitlab.com/libosinfo/osinfo-db/";
|
||||
changelog = "https://gitlab.com/libosinfo/osinfo-db/-/commits/v${version}";
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.bjornfor ];
|
||||
|
|
Loading…
Reference in a new issue