martin: init at 0.5.0

gstqt5
Nikolay Korotkiy 2020-06-06 13:34:35 +03:00
parent 33f65a5b39
commit d1ba7a4b27
No known key found for this signature in database
GPG Key ID: D1DE6D7F693663A5
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ stdenv, rustPlatform, fetchFromGitHub, Security }:
rustPlatform.buildRustPackage rec {
pname = "martin";
version = "0.5.0";
src = fetchFromGitHub {
owner = "urbica";
repo = pname;
rev = "v${version}";
sha256 = "1i9zhmjkgid4s90n52wqmrl3lwswcaxd6d47ssycgjl1nv0jla4k";
};
cargoSha256 = "08rr783qvpm1q7s60k7mh3k5npf0lg5s1x74lnxcxdgrlgpn5gcf";
buildInputs = with stdenv; lib.optional isDarwin Security;
doCheck = false;
meta = with stdenv.lib; {
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;
};
}

View File

@ -4708,6 +4708,10 @@ in
makebootfat = callPackage ../tools/misc/makebootfat { };
martin = callPackage ../servers/martin {
inherit (darwin.apple_sdk.frameworks) Security;
};
/* Python 3.8 is currently broken with matrix-synapse since `python38Packages.bleach` fails
(https://github.com/NixOS/nixpkgs/issues/76093) */
matrix-synapse = callPackage ../servers/matrix-synapse { /*python3 = python38;*/ };