python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / ats-acc / default.nix
blob73e475da3942bc4a7aacaf9d010ea8a454e3ad34
1 { lib, stdenv, fetchFromGitHub, ats2 }:
3 stdenv.mkDerivation rec {
4   pname = "ats-acc";
5   version = "unstable-2018-10-21";
7   src = fetchFromGitHub {
8     owner = "sparverius";
9     repo = pname;
10     rev = "2d49f4e76d0fe1f857ceb70deba4aed13c306dcb";
11     sha256 = "sha256-Wp39488YNL40GKp4KaJwhi75PsYP+gMtrZqAvs4Q/sw=";
12   };
14   nativeBuildInputs = [ ats2 ];
16   meta = with lib; {
17     description = "Pretty-print error messages of the ATS Compiler";
18     homepage = "https://github.com/sparverius/ats-acc";
19     maintainers = with maintainers; [ fortuneteller2k ];
20     license = licenses.unfree; # Upstream has no license
21   };