forked from mirrors/nixpkgs
oak: init at 0.2
This commit is contained in:
parent
98ff4139d1
commit
74ffc37950
25
pkgs/development/interpreters/oak/default.nix
Normal file
25
pkgs/development/interpreters/oak/default.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -14369,6 +14369,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…
Reference in a new issue