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-03-19 15:14:18 +00:00
version = "0.7.2";
2020-08-07 23:20:43 +00:00
src = fetchFromGitHub {
owner = "gopherdata";
repo = "gophernotes";
rev = "v${version}";
2021-03-19 15:14:18 +00:00
sha256 = "sha256-EEMKV+k5qcep4z7J5r1nSLxmb0fbfpJOPmz5bE91cd8=";
2020-08-07 23:20:43 +00:00
};
2021-03-19 15:14:18 +00:00
vendorSha256 = "sha256-Wy4HcPlrlYUjRQHhw+UPAa+Rn1FvJobWGxgFiJKJTAg=";
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 ];
};
}