python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / pridecat / default.nix
blobd7bf2b86d6da60ad5f8459d594e47961738ce604
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation {
4   pname = "pridecat";
5   version = "unstable-2020-06-19";
7   src = fetchFromGitHub {
8     owner = "lunasorcery";
9     repo = "pridecat";
10     rev = "92396b11459e7a4b5e8ff511e99d18d7a1589c96";
11     sha256 = "sha256-PyGLbbsh9lFXhzB1Xn8VQ9zilivycGFEIc7i8KXOxj8=";
12   };
14   # fixes the install path in the Makefile
15   patches = [ ./fix_install.patch ];
17   meta = with lib; {
18     description = "Like cat, but more colorful";
19     homepage = "https://github.com/lunasorcery/pridecat";
20     license = licenses.cc-by-nc-sa-40;
21     maintainers = with maintainers; [ lunarequest ];
22   };