chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / or / orbiton / package.nix
blob6e9cee2539febb582f8686b47e2ae54a689cc208
1 { lib, stdenv, buildGoModule, fetchFromGitHub, installShellFiles, makeWrapper, pkg-config
2 , withGui ? true, vte
3 }:
5 buildGoModule rec {
6   pname = "orbiton";
7   version = "2.65.12";
9   src = fetchFromGitHub {
10     owner = "xyproto";
11     repo = "orbiton";
12     rev = "v${version}";
13     hash = "sha256-1KVw2dj//6vwUUj1jVWe2J/9F6J8BQsvCAEbJZnW26c=";
14   };
16   vendorHash = null;
18   postPatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
19     substituteInPlace Makefile \
20       --replace "-Wl,--as-needed" ""
22     # Requires impure pbcopy and pbpaste
23     substituteInPlace v2/pbcopy_test.go \
24       --replace TestPBcopy SkipTestPBcopy
25   '';
27   nativeBuildInputs = [ installShellFiles makeWrapper pkg-config ];
29   buildInputs = lib.optional withGui vte;
31   preBuild = "cd v2";
33   postInstall = ''
34     cd ..
35     installManPage o.1
36     mv $out/bin/{orbiton,o}
37   '' + lib.optionalString withGui ''
38     make install-gui PREFIX=$out
39     wrapProgram $out/bin/og --prefix PATH : $out/bin
40   '';
42   meta = with lib; {
43     description = "Config-free text editor and IDE limited to VT100";
44     homepage = "https://orbiton.zip";
45     license = licenses.bsd3;
46     maintainers = with maintainers; [ sikmir ];
47     mainProgram = "o";
48   };