nixpkgs/pkgs/development/interpreters/oak/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
555 B
Nix
Raw Normal View History

2022-06-08 12:28:32 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "oak";
2022-11-09 06:18:36 +00:00
version = "0.3";
2022-06-08 12:28:32 +00:00
src = fetchFromGitHub {
owner = "thesephist";
repo = pname;
rev = "v${version}";
2022-11-09 06:18:36 +00:00
sha256 = "sha256-DK5n8xK57CQiukyBt9+CFK1j8+nphP//T2jTXq64VH8=";
2022-06-08 12:28:32 +00:00
};
vendorHash = "sha256-iQtb3zNa57nB6x4InVPw7FCmW7XPw5yuz0OcfASXPD8=";
2022-06-08 12:28:32 +00:00
meta = with lib; {
description = "Expressive, simple, dynamic programming language";
homepage = "https://oaklang.org/";
license = licenses.mit;
maintainers = with maintainers; [ tejasag ];
};
}