pkgs: add yeagi

This commit is contained in:
Aaron Bieber 2023-02-08 13:39:58 -07:00
parent c7eb0bb08b
commit a3f25464ea
No known key found for this signature in database
2 changed files with 23 additions and 0 deletions

View File

@ -248,6 +248,7 @@
inherit pkgs;
isUnstable = true;
};
yaegi = pkgs.callPackage ./pkgs/yaegi.nix { inherit pkgs; };
yarr = pkgs.callPackage ./pkgs/yarr.nix {
inherit pkgs;
isUnstable = true;

22
pkgs/yaegi.nix Normal file
View File

@ -0,0 +1,22 @@
{ lib, buildGoModule, fetchFromGitHub, ... }:
with lib;
buildGoModule rec {
pname = "yaegi";
version = "0.15.0";
src = fetchFromGitHub {
owner = "traefik";
repo = pname;
rev = "v${version}";
sha256 = "sha256-++WA6Xdo9YuMQgCL/c485LgKeV4XeodVZBBYCBsmh+M=";
};
vendorHash = null;
meta = {
description = "Yaegi is Another Elegant Go Interpreter";
homepage = "https://github.com/traefik/yaegi";
license = licenses.asl20;
maintainers = with maintainers; [ qbit ];
};
}