mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
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
|
@ -18,7 +18,7 @@
|
|||
|
||||
let
|
||||
pname = "hover";
|
||||
version = "0.46.2";
|
||||
version = "0.46.3";
|
||||
|
||||
libs = with xorg; [
|
||||
libX11.dev
|
||||
|
@ -46,13 +46,13 @@ let
|
|||
|
||||
subPackages = [ "." ];
|
||||
|
||||
vendorSha256 = "0hdh4vwzvwlarjzg6pv9dp665r9px9yplfjpgyyfjyy5b9sxl795";
|
||||
vendorSha256 = "sha256-qTBGmONlcFJcN+9bMZbVY+6kOQ97JmJWWvgmNeDWBL0=";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
rev = "v${version}";
|
||||
owner = "go-flutter-desktop";
|
||||
repo = pname;
|
||||
sha256 = "1gmsv7hmj7zzfwbz50az3kvgzqvj0jn8i2pv7sjyl9dx1bavi5g3";
|
||||
sha256 = "sha256-0qzbRzpqoZcAt3k52+omqZ3Fq1KdS++wPpQkBkG1p6o=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ addOpenGLRunpath makeWrapper ];
|
||||
|
|
|
@ -53,7 +53,7 @@ index cb75563..3822e80 100644
|
|||
-func ExecuteTemplateFromAssetsBox(boxed, to string, assetsBox *rice.Box, templateData interface{}) {
|
||||
- templateString, err := assetsBox.String(boxed)
|
||||
+func ExecuteTemplateFromAssetsBox(boxed, to string, assetsBox string, templateData interface{}) {
|
||||
+ templateString, err := ioutil.ReadFile(boxed + "/" + boxed)
|
||||
+ templateString, err := ioutil.ReadFile(assetsBox + "/" + boxed)
|
||||
if err != nil {
|
||||
log.Errorf("Failed to find template file: %v\n", err)
|
||||
os.Exit(1)
|
||||
|
|
Loading…
Reference in a new issue