forked from mirrors/nixpkgs
libosmpbf: remove (#114997)
* libosmpbf: remove * Update pkgs/top-level/aliases.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
f0ca9c829d
commit
e1bcb3cc01
|
@ -1,23 +0,0 @@
|
|||
{lib, stdenv, fetchurl, protobuf}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libosmpbf-1.5.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/scrosby/OSM-binary/archive/v1.5.0.tar.gz";
|
||||
sha256 = "sha256-Kr8xJnKXk3MsM4B2OZnMNl5Rv/2jaaAIITh5o82QR2w=";
|
||||
};
|
||||
|
||||
buildInputs = [ protobuf ];
|
||||
|
||||
sourceRoot = "OSM-binary-1.5.0/src";
|
||||
|
||||
installFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/scrosby/OSM-binary";
|
||||
description = "C library to read and write OpenStreetMap PBF files";
|
||||
license = lib.licenses.lgpl3;
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
}
|
|
@ -340,6 +340,7 @@ mapAliases ({
|
|||
liblapackWithoutAtlas = lapack-reference; # added 2018-11-05
|
||||
liblastfm = libsForQt5.liblastfm; # added 2020-06-14
|
||||
liblrdf = lrdf; # added 2018-04-25
|
||||
libosmpbf = throw "libosmpbf was removed because it is no longer required by osrm-backend";
|
||||
libqrencode = qrencode; # added 2019-01-01
|
||||
librdf = lrdf; # added 2020-03-22
|
||||
librecad2 = librecad; # backwards compatibility alias, added 2015-10
|
||||
|
|
|
@ -15494,8 +15494,6 @@ in
|
|||
|
||||
libosmocore = callPackage ../applications/misc/libosmocore { };
|
||||
|
||||
libosmpbf = callPackage ../development/libraries/libosmpbf {};
|
||||
|
||||
libotr = callPackage ../development/libraries/libotr { };
|
||||
|
||||
libow = callPackage ../development/libraries/libow { };
|
||||
|
|
Loading…
Reference in a new issue