nixpkgs/pkgs/applications/editors/gophernotes/default.nix

26 lines
574 B
Nix
Raw Normal View History

2020-08-07 23:20:43 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "gophernotes";
2021-06-25 11:36:48 +00:00
version = "0.7.3";
2020-08-07 23:20:43 +00:00
src = fetchFromGitHub {
owner = "gopherdata";
repo = "gophernotes";
rev = "v${version}";
2021-06-25 11:36:48 +00:00
sha256 = "sha256-LiYPos6Ic+se5bTTkvggmyxyS20uhgALkDU2LoXTci8=";
2020-08-07 23:20:43 +00:00
};
2021-06-25 11:36:48 +00:00
vendorSha256 = "sha256-wDMx3B47Vv87/3YEPX8/70Q5/REJ7IPvw8dA/viJiSY=";
2020-08-07 23:20:43 +00:00
meta = with lib; {
description = "Go kernel for Jupyter notebooks";
homepage = "https://github.com/gopherdata/gophernotes";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}