2023-02-28 14:31:09 +00:00
|
|
|
{ lib, stdenv, rustPlatform, fetchFromGitHub, git, pkg-config, openssl, Security, libiconv }:
|
2019-12-17 10:36:53 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "gleam";
|
2023-05-23 14:53:58 +00:00
|
|
|
version = "0.29.0";
|
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;
|
2023-02-28 14:31:09 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2023-05-23 14:53:58 +00:00
|
|
|
hash = "sha256-qGFF6Q1cY2hDb2TycB39RY7RAIJica0y6ju76NeIplY=";
|
2019-12-17 10:36:53 +00:00
|
|
|
};
|
|
|
|
|
2023-02-28 14:31:09 +00:00
|
|
|
nativeBuildInputs = [ git 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
|
|
|
|
2023-05-23 14:53:58 +00:00
|
|
|
cargoHash = "sha256-/WIM7DhnfPlo/DGoTSEHON+et55h364V++VHU8Olvuc=";
|
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
|
|
|
};
|
|
|
|
}
|