hover: 0.46.2 -> 0.46.3
Also fix `hover init` command failing with the following error: ``` hover: Failed to find template file: open app/hover.yaml.tmpl/app/hover.yaml.tmpl: no such file or directory ```
This commit is contained in:
parent
91936abbdd
commit
4e91ced01e
2 changed files with 4 additions and 4 deletions
|
@ -18,7 +18,7 @@
|
||||||
|
|
||||||
let
|
let
|
||||||
pname = "hover";
|
pname = "hover";
|
||||||
version = "0.46.2";
|
version = "0.46.3";
|
||||||
|
|
||||||
libs = with xorg; [
|
libs = with xorg; [
|
||||||
libX11.dev
|
libX11.dev
|
||||||
|
@ -46,13 +46,13 @@ let
|
||||||
|
|
||||||
subPackages = [ "." ];
|
subPackages = [ "." ];
|
||||||
|
|
||||||
vendorSha256 = "0hdh4vwzvwlarjzg6pv9dp665r9px9yplfjpgyyfjyy5b9sxl795";
|
vendorSha256 = "sha256-qTBGmONlcFJcN+9bMZbVY+6kOQ97JmJWWvgmNeDWBL0=";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
owner = "go-flutter-desktop";
|
owner = "go-flutter-desktop";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
sha256 = "1gmsv7hmj7zzfwbz50az3kvgzqvj0jn8i2pv7sjyl9dx1bavi5g3";
|
sha256 = "sha256-0qzbRzpqoZcAt3k52+omqZ3Fq1KdS++wPpQkBkG1p6o=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ addOpenGLRunpath makeWrapper ];
|
nativeBuildInputs = [ addOpenGLRunpath makeWrapper ];
|
||||||
|
|
|
@ -53,7 +53,7 @@ index cb75563..3822e80 100644
|
||||||
-func ExecuteTemplateFromAssetsBox(boxed, to string, assetsBox *rice.Box, templateData interface{}) {
|
-func ExecuteTemplateFromAssetsBox(boxed, to string, assetsBox *rice.Box, templateData interface{}) {
|
||||||
- templateString, err := assetsBox.String(boxed)
|
- templateString, err := assetsBox.String(boxed)
|
||||||
+func ExecuteTemplateFromAssetsBox(boxed, to string, assetsBox string, templateData interface{}) {
|
+func ExecuteTemplateFromAssetsBox(boxed, to string, assetsBox string, templateData interface{}) {
|
||||||
+ templateString, err := ioutil.ReadFile(boxed + "/" + boxed)
|
+ templateString, err := ioutil.ReadFile(assetsBox + "/" + boxed)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Errorf("Failed to find template file: %v\n", err)
|
log.Errorf("Failed to find template file: %v\n", err)
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
|
|
Loading…
Reference in a new issue