mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
osinfo-db-tools: 1.2.0 -> 1.4.0
add new dep json-glib
This commit is contained in:
parent
9edb851308
commit
38cc275148
1 changed files with 6 additions and 5 deletions
|
@ -1,17 +1,18 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, intltool, glib, libxml2
|
{ stdenv, fetchurl, pkgconfig, intltool, glib, libxml2
|
||||||
, libxslt, libarchive, bzip2, lzma
|
, libxslt, libarchive, bzip2, lzma, json-glib
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "osinfo-db-tools-1.2.0";
|
pname = "osinfo-db-tools";
|
||||||
|
version = "1.4.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://releases.pagure.org/libosinfo/${name}.tar.gz";
|
url = "https://releases.pagure.org/libosinfo/${pname}-${version}.tar.gz";
|
||||||
sha256 = "07zqbwsmdgnzqah2smm4zri04c0qm82z1jn8kzz1bnsqbfg84l1v";
|
sha256 = "08zpjq1g27n6wmmqwxws95w045warhg9bxcv1phvkdcrddf15q3y";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig intltool ];
|
nativeBuildInputs = [ pkgconfig intltool ];
|
||||||
buildInputs = [ glib libxml2 libxslt libarchive bzip2 lzma ];
|
buildInputs = [ glib json-glib libxml2 libxslt libarchive bzip2 lzma ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Tools for managing the osinfo database";
|
description = "Tools for managing the osinfo database";
|
||||||
|
|
Loading…
Reference in a new issue