python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / quich / default.nix
blob1b54eb01112c02cca78ac74be18bf86d84f5c570
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "quich";
5   version = "4.0.0";
7   src = fetchFromGitHub {
8     owner = "Usbac";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-4gsSjLZ7Z4ErNqe86Fy5IrzLMfvDyY18sE0yBnj9bvM=";
12   };
14   doCheck = true;
16   makeFlags = [ "DESTDIR=" "PREFIX=$(out)" "CC=${stdenv.cc.targetPrefix}cc" ];
18   meta = with lib; {
19     description = "The advanced terminal calculator";
20     longDescription = ''
21       Quich is a compact, fast, powerful and useful calculator for your terminal
22       with numerous features, supporting Windows and Linux Systems,
23       written in ANSI C.
24     '';
25     homepage = "https://github.com/Usbac/quich";
26     license = licenses.mit;
27     maintainers = [ maintainers.xdhampus ];
28     platforms = platforms.all;
29   };