about summary refs log tree commit diff
path: root/pkgs/development/compilers/gleam/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/gleam/default.nix')
-rw-r--r--pkgs/development/compilers/gleam/default.nix40
1 files changed, 0 insertions, 40 deletions
diff --git a/pkgs/development/compilers/gleam/default.nix b/pkgs/development/compilers/gleam/default.nix
deleted file mode 100644
index 4e2111814deb..000000000000
--- a/pkgs/development/compilers/gleam/default.nix
+++ /dev/null
@@ -1,40 +0,0 @@
-{ lib
-, stdenv
-, rustPlatform
-, fetchFromGitHub
-, git
-, pkg-config
-, openssl
-, Security
-, nix-update-script
-, SystemConfiguration
-}:
-
-rustPlatform.buildRustPackage rec {
-  pname = "gleam";
-  version = "1.2.1";
-
-  src = fetchFromGitHub {
-    owner = "gleam-lang";
-    repo = pname;
-    rev = "refs/tags/v${version}";
-    hash = "sha256-J3FqaKEeK+Xy8Ri5j7+K+4wpvNeMUHSfj2O68XBPlYs=";
-  };
-
-  nativeBuildInputs = [ git pkg-config ];
-
-  buildInputs = [ openssl ] ++
-    lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
-
-  cargoHash = "sha256-l0LFgmsk87mCVu1UiaFtP3mO01CDV3xTz4Kv+l6AAWw=";
-
-  passthru.updateScript = nix-update-script { };
-
-  meta = with lib; {
-    description = "Statically typed language for the Erlang VM";
-    mainProgram = "gleam";
-    homepage = "https://gleam.run/";
-    license = licenses.asl20;
-    maintainers = teams.beam.members ++ [ lib.maintainers.philtaken ];
-  };
-}