summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorlegendofmiracles <legendofmiracles@protonmail.com>2021-10-17 18:18:16 -0600
committerlegendofmiracles <legendofmiracles@protonmail.com>2021-10-17 20:25:03 -0600
commitb678b680a9f372e5b9f61615b044eb513a6f9fb0 (patch)
tree4a62832e3e7b77ab145a6975b253f63847e79def /pkgs/shells
parent3814bbc65f10dd4813f4b312a5c4221524c67b15 (diff)
downloadnixpkgs-b678b680a9f372e5b9f61615b044eb513a6f9fb0.tar
nixpkgs-b678b680a9f372e5b9f61615b044eb513a6f9fb0.tar.gz
nixpkgs-b678b680a9f372e5b9f61615b044eb513a6f9fb0.tar.bz2
nixpkgs-b678b680a9f372e5b9f61615b044eb513a6f9fb0.tar.lz
nixpkgs-b678b680a9f372e5b9f61615b044eb513a6f9fb0.tar.xz
nixpkgs-b678b680a9f372e5b9f61615b044eb513a6f9fb0.tar.zst
nixpkgs-b678b680a9f372e5b9f61615b044eb513a6f9fb0.zip
hilbish: 0.5.1 -> 0.6.0
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/hilbish/default.nix14
1 files changed, 9 insertions, 5 deletions
diff --git a/pkgs/shells/hilbish/default.nix b/pkgs/shells/hilbish/default.nix
index be2bdf318f4..a4a54e45c63 100644
--- a/pkgs/shells/hilbish/default.nix
+++ b/pkgs/shells/hilbish/default.nix
@@ -2,25 +2,24 @@
 
 buildGoModule rec {
   pname = "hilbish";
-  version = "0.5.1";
+  version = "0.6.0";
 
   src = fetchFromGitHub {
     owner = "Rosettea";
     repo = "Hilbish";
     rev = "v${version}";
-    sha256 = "sha256-557Je9KeBpkZxVAxcjWAhybIJJYlzhtbnIyZh0rCRUc=";
+    sha256 = "sha256-ACHHHGT3VGnvZVi1UZb57+g/slcld5e3bh+DDhUVVpQ=";
     fetchSubmodules = true;
   };
 
-  vendorSha256 = "sha256-8l+Kb1ADMLwv0Hf/ikok8eUcEEST07rhk8BjHxJI0lc=";
+  vendorSha256 = "sha256-SVGPMFpQjVOWCfiPpEmqhp6MEO0wqeyAZVyeNmTuXl0=";
 
   buildInputs = [ readline ];
 
   ldflags = [ "-s" "-w" ];
 
   postPatch = ''
-    # in master vars.go is called vars_linux.go
-    substituteInPlace vars.go \
+    substituteInPlace vars_linux.go \
       --replace "/usr/share" "${placeholder "out"}/share/"
   '';
 
@@ -28,8 +27,13 @@ buildGoModule rec {
     mkdir -p "$out/share/hilbish"
 
     cp .hilbishrc.lua $out/share/hilbish/
+    cp -r docs -t $out/share/hilbish
     cp -r libs -t $out/share/hilbish/
     cp preload.lua $out/share/hilbish/
+
+    # segfaults and it's already been generated upstream
+    # we copy the docs over with the above cp command
+    rm $out/bin/docgen
   '';
 
   meta = with lib; {