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 00:20:43 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "gophernotes";
2022-01-11 11:37:24 +00:00
version = "0.7.4";
2020-08-08 00:20:43 +01:00
src = fetchFromGitHub {
owner = "gopherdata";
repo = "gophernotes";
rev = "v${version}";
2022-01-11 11:37:24 +00:00
sha256 = "sha256-ZyZ5VOZEgFn9QrFBC1bNHKA2g8msDUnd1c5plooO+b8=";
2020-08-08 00:20:43 +01:00
};
2022-01-11 11:37:24 +00:00
vendorSha256 = "sha256-NH8Hz9SzmDksvGqCpggi6hG4kW+AoA1tctF6rGgy4H4=";
2020-08-08 00:20:43 +01:00
meta = with lib; {
description = "Go kernel for Jupyter notebooks";
homepage = "https://github.com/gopherdata/gophernotes";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}