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

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

26 lines
574 B
Nix
Raw Normal View History

2020-08-08 01:20:43 +02:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "gophernotes";
2022-07-28 15:23:27 +02:00
version = "0.7.5";
2020-08-08 01:20:43 +02:00
src = fetchFromGitHub {
owner = "gopherdata";
repo = "gophernotes";
rev = "v${version}";
2022-07-28 15:23:27 +02:00
sha256 = "sha256-cGlYgay/t6XIl0U9XvrHkqNxZ6BXtXi0TIANY1WdZ3Y=";
2020-08-08 01:20:43 +02:00
};
2022-07-28 15:23:27 +02:00
vendorSha256 = "sha256-iIBqx52fD12R+7MSjQNihMYYtZ9vPAdJndOG4YJVhy4=";
2020-08-08 01:20:43 +02:00
meta = with lib; {
description = "Go kernel for Jupyter notebooks";
homepage = "https://github.com/gopherdata/gophernotes";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}