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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
859 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchurl
, osinfo-db-tools
, gettext
, libxml2
}:
2017-12-19 05:59:33 +00:00
stdenv.mkDerivation rec {
2019-03-01 21:19:36 +00:00
pname = "osinfo-db";
2023-03-26 07:42:49 +00:00
version = "20230308";
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";
2023-03-26 07:42:49 +00:00
sha256 = "sha256-VGugTsxekzui1/PztDM6KYDUrk38UoSYm5xUdY8rkIg=";
2017-12-19 05:59:33 +00:00
};
nativeBuildInputs = [
osinfo-db-tools
gettext
libxml2
];
2017-12-19 05:59:33 +00:00
installPhase = ''
osinfo-db-import --dir "$out/share/osinfo" "${src}"
'';
meta = with lib; {
2017-12-19 05:59:33 +00:00
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}";
2017-12-19 05:59:33 +00:00
license = licenses.gpl2Plus;
2022-07-28 14:24:15 +00:00
platforms = platforms.unix;
2017-12-19 05:59:33 +00:00
maintainers = [ maintainers.bjornfor ];
};
}