python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / gofu / default.nix
blobea3cbde3adb7d729988ad30976a664ac00843628
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "gofu";
5   version = "unstable-2022-04-01";
7   src = fetchFromGitHub {
8     owner = "majewsky";
9     repo = pname;
10     rev = "be0e424eecec3fec19ba3518f8fd1bb07b6908dc";
11     sha256 = "sha256-jMOmvCsuRtL9EgPicdNEksVgFepL/JZA53o2wzr8uzQ=";
12   };
14   vendorSha256 = null;
16   subPackages = [ "." ];
18   postInstall = ''
19     ln -s $out/bin/gofu $out/bin/rtree
20     ln -s $out/bin/gofu $out/bin/prettyprompt
21   '';
23   meta = with lib; {
24     description = "Multibinary containing several utilities";
25     homepage = "https://github.com/majewsky/gofu";
26     license = licenses.gpl3Plus;
27     maintainers = with maintainers; [ SuperSandro2000 ];
28   };