nixpkgs/pkgs/tools/misc/osinfo-db-tools/default.nix
R. RyanTM 0e3d6154ae osinfo-db-tools: 1.1.0 -> 1.2.0
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
2018-06-23 13:48:46 -07:00

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 ];
};
}