depot/third_party/nixpkgs/pkgs/development/libraries/libosmpbf/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

23 lines
593 B
Nix

{lib, stdenv, fetchurl, protobuf}:
stdenv.mkDerivation {
name = "libosmpbf-1.3.3";
src = fetchurl {
url = "https://github.com/scrosby/OSM-binary/archive/v1.3.3.tar.gz";
sha256 = "a109f338ce6a8438a8faae4627cd08599d0403b8977c185499de5c17b92d0798";
};
buildInputs = [ protobuf ];
sourceRoot = "OSM-binary-1.3.3/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;
};
}