python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / mangal / default.nix
blob1c7840be855a714bde6ef8d3d87c563a6fde6e22
1 { lib, stdenv, buildGoModule, fetchFromGitHub, installShellFiles }:
3 buildGoModule rec {
4   pname = "mangal";
5   version = "4.0.2";
7   src = fetchFromGitHub {
8     owner = "metafates";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-ssvd8gdF5h6EKLY/W+1zbZWcVQqy+UirIS0p0DBQj0E=";
12   };
14   proxyVendor = true;
15   vendorSha256 = null;
17   ldflags = [ "-s" "-w" ];
19   nativeBuildInputs = [ installShellFiles ];
21   postInstall = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
22     # Mangal creates a config file in the folder ~/.config/mangal and fails if not possible
23     export MANGAL_CONFIG_PATH=`mktemp -d`
24     installShellCompletion --cmd mangal \
25       --bash <($out/bin/mangal completion bash) \
26       --zsh <($out/bin/mangal completion zsh) \
27       --fish <($out/bin/mangal completion fish)
28   '';
30   doCheck = false; # test fail because of sandbox
32   meta = with lib; {
33     description =
34       "A fancy CLI app written in Go which scrapes, downloads and packs manga into different formats";
35     homepage = "https://github.com/metafates/mangal";
36     license = licenses.mit;
37     maintainers = [ maintainers.bertof ];
38   };