mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
osinfo-db-tools: init at 1.1.0
This commit is contained in:
parent
dc8f184e9d
commit
0cdee78c81
23
pkgs/tools/misc/osinfo-db-tools/default.nix
Normal file
23
pkgs/tools/misc/osinfo-db-tools/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchurl, pkgconfig, intltool, glib, libxml2
|
||||
, libxslt, libarchive, bzip2, lzma
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "osinfo-db-tools-1.1.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://releases.pagure.org/libosinfo/${name}.tar.gz";
|
||||
sha256 = "0sslzrbhpb2js1vn48c11s5p0bic3yqzdnxm054dhc3wq0pwshd1";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -10312,6 +10312,8 @@ with pkgs;
|
||||
|
||||
osm-gps-map = callPackage ../development/libraries/osm-gps-map { };
|
||||
|
||||
osinfo-db-tools = callPackage ../tools/misc/osinfo-db-tools { };
|
||||
|
||||
p11_kit = callPackage ../development/libraries/p11-kit { };
|
||||
|
||||
paperkey = callPackage ../tools/security/paperkey { };
|
||||
|
Loading…
Reference in New Issue
Block a user