python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / fet-sh / default.nix
blob689eb0395f40a23919576a32123b6cee5b2a0ae8
1 { stdenvNoCC, lib, fetchFromGitHub }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "fet-sh";
5   version = "1.9";
7   src = fetchFromGitHub {
8     owner = "6gk";
9     repo = "fet.sh";
10     rev = "v${version}";
11     sha256 = "sha256-xhX2nVteC3T3IjQh++mYlm0btDJQbyQa6b8sGualV0E=";
12   };
14   postPatch = ''
15     patchShebangs fet.sh
16   '';
18   installPhase = ''
19     install -m755 -D fet.sh $out/bin/fet.sh
20   '';
22   meta = with lib; {
23     description = "A fetch written in posix shell without any external commands";
24     homepage = "https://github.com/6gk/fet.sh";
25     license = licenses.isc;
26     platforms = platforms.all;
27     maintainers = with maintainers; [ elkowar ];
28     mainProgram = "fet.sh";
29   };