forked from mirrors/nixpkgs
martin: init at 0.5.0
This commit is contained in:
parent
33f65a5b39
commit
d1ba7a4b27
27
pkgs/servers/martin/default.nix
Normal file
27
pkgs/servers/martin/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -4708,6 +4708,10 @@ in
|
||||||
|
|
||||||
makebootfat = callPackage ../tools/misc/makebootfat { };
|
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
|
/* Python 3.8 is currently broken with matrix-synapse since `python38Packages.bleach` fails
|
||||||
(https://github.com/NixOS/nixpkgs/issues/76093) */
|
(https://github.com/NixOS/nixpkgs/issues/76093) */
|
||||||
matrix-synapse = callPackage ../servers/matrix-synapse { /*python3 = python38;*/ };
|
matrix-synapse = callPackage ../servers/matrix-synapse { /*python3 = python38;*/ };
|
||||||
|
|
Loading…
Reference in a new issue