nixpkgs/pkgs/servers/martin/default.nix

28 lines
733 B
Nix
Raw Permalink Normal View History

{ lib, stdenv, rustPlatform, fetchFromGitHub, Security }:
2020-06-06 10:34:35 +00:00
rustPlatform.buildRustPackage rec {
pname = "martin";
version = "0.5.0";
src = fetchFromGitHub {
owner = "urbica";
repo = pname;
rev = "v${version}";
sha256 = "1i9zhmjkgid4s90n52wqmrl3lwswcaxd6d47ssycgjl1nv0jla4k";
};
cargoSha256 = "1jgl8s6h4pqhn189swrhn896kw1rkmqpf7dq52ry2rdci80g02nq";
2020-06-06 10:34:35 +00:00
buildInputs = with stdenv; lib.optional isDarwin Security;
doCheck = false;
meta = with lib; {
2020-06-06 10:34:35 +00:00
description = "Blazing fast and lightweight PostGIS vector tiles server";
homepage = "https://martin.urbica.co/";
license = licenses.mit;
maintainers = with maintainers; [ sikmir ];
platforms = with platforms; linux ++ darwin;
};
}