2021-04-02 19:13:02 +00:00
|
|
|
{ lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, openssl, Security, libiconv }:
|
2019-12-17 10:36:53 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "gleam";
|
2022-03-09 03:30:31 +00:00
|
|
|
version = "0.20.1";
|
2019-12-17 10:36:53 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2019-12-27 16:51:43 +00:00
|
|
|
owner = "gleam-lang";
|
2019-12-17 10:36:53 +00:00
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-03-09 03:30:31 +00:00
|
|
|
sha256 = "sha256-AK+eb0eJyI7ALn7sg0wz4GzHthxrJWd1PVT5bL9LKWA=";
|
2019-12-17 10:36:53 +00:00
|
|
|
};
|
|
|
|
|
2020-07-23 18:43:25 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2019-12-17 10:36:53 +00:00
|
|
|
|
2020-07-23 18:43:25 +00:00
|
|
|
buildInputs = [ openssl ] ++
|
2021-04-02 19:13:02 +00:00
|
|
|
lib.optionals stdenv.isDarwin [ Security libiconv ];
|
2020-07-23 18:43:25 +00:00
|
|
|
|
2022-03-09 03:30:31 +00:00
|
|
|
cargoSha256 = "sha256-kFTAPbP42sbhsvP069ua0ys1Dw7W+Gdsv2YaGrzorIk=";
|
2019-12-17 10:36:53 +00:00
|
|
|
|
2021-01-22 11:25:31 +00:00
|
|
|
meta = with lib; {
|
2019-12-17 10:36:53 +00:00
|
|
|
description = "A statically typed language for the Erlang VM";
|
|
|
|
homepage = "https://gleam.run/";
|
|
|
|
license = licenses.asl20;
|
2021-01-23 20:25:40 +00:00
|
|
|
maintainers = teams.beam.members;
|
2019-12-17 10:36:53 +00:00
|
|
|
};
|
|
|
|
}
|