Merge pull request #176867 from tejasag/submit/init-oak

oak: init at v0.2
main
legendofmiracles 2 years ago committed by GitHub
commit 9fba3c44d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      maintainers/maintainer-list.nix
  2. 25
      pkgs/development/interpreters/oak/default.nix
  3. 2
      pkgs/top-level/all-packages.nix

@ -12709,6 +12709,12 @@
githubId = 139251;
name = "Tom Hunger";
};
tejasag = {
name = "Tejas Agarwal";
email = "tejasagarwalbly@gmail.com";
github = "tejasag";
githubId = 67542663;
};
telotortium = {
email = "rirelan@gmail.com";
github = "telotortium";

@ -0,0 +1,25 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "oak";
version = "0.2";
src = fetchFromGitHub {
owner = "thesephist";
repo = pname;
rev = "v${version}";
sha256 = "sha256-00UanINtrFyjQWiAw1ucB4eEODMr9+wT+99Zy2Oc1j4=";
};
vendorSha256 = "sha256-iQtb3zNa57nB6x4InVPw7FCmW7XPw5yuz0OcfASXPD8=";
meta = with lib; {
description = "Expressive, simple, dynamic programming language";
homepage = "https://oaklang.org/";
license = licenses.mit;
maintainers = with maintainers; [ tejasag ];
};
}

@ -14468,6 +14468,8 @@ with pkgs;
ngn-k = callPackage ../development/interpreters/ngn-k { };
oak = callPackage ../development/interpreters/oak { };
obb = callPackage ../development/interpreters/clojure/obb.nix { };
octave = callPackage ../development/interpreters/octave {

Loading…
Cancel
Save