mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
0e3d6154ae
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-tools/versions. These checks were done: - built on NixOS - /nix/store/m0gzbmf3n18xip9y64iwqmy7a0yfa51j-osinfo-db-tools-1.2.0/bin/osinfo-db-validate passed the binary check. - /nix/store/m0gzbmf3n18xip9y64iwqmy7a0yfa51j-osinfo-db-tools-1.2.0/bin/osinfo-db-import passed the binary check. - /nix/store/m0gzbmf3n18xip9y64iwqmy7a0yfa51j-osinfo-db-tools-1.2.0/bin/osinfo-db-export passed the binary check. - /nix/store/m0gzbmf3n18xip9y64iwqmy7a0yfa51j-osinfo-db-tools-1.2.0/bin/osinfo-db-path passed the binary check. - 4 of 4 passed binary check by having a zero exit code. - 0 of 4 passed binary check by having the new version present in output. - found 1.2.0 with grep in /nix/store/m0gzbmf3n18xip9y64iwqmy7a0yfa51j-osinfo-db-tools-1.2.0 - directory tree listing: https://gist.github.com/9181decaf4161cfbaa99ab2b20bb161a - du listing: https://gist.github.com/bbf02890ab226a162c6cbc90e54f0f4f
24 lines
671 B
Nix
24 lines
671 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, glib, libxml2
|
|
, libxslt, libarchive, bzip2, lzma
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "osinfo-db-tools-1.2.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://releases.pagure.org/libosinfo/${name}.tar.gz";
|
|
sha256 = "07zqbwsmdgnzqah2smm4zri04c0qm82z1jn8kzz1bnsqbfg84l1v";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
|
buildInputs = [ glib libxml2 libxslt libarchive bzip2 lzma ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Tools for managing the osinfo database";
|
|
homepage = https://libosinfo.org/;
|
|
license = licenses.lgpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|