python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / ssocr / default.nix
blob4496f2a595324712349052e6c4d3b556ec1a564a
1 { lib, stdenv, fetchFromGitHub, imlib2, libX11, pkg-config }:
3 stdenv.mkDerivation rec {
4   pname = "ssocr";
5   version = "2.22.1";
7   src = fetchFromGitHub {
8     owner = "auerswal";
9     repo = "ssocr";
10     rev = "v${version}";
11     sha256 = "sha256-j1l1o1wtVQo+G9HfXZ1sJQ8amsUQhuYxFguWFQoRe/s=";
12   };
14   nativeBuildInputs = [ pkg-config ];
15   buildInputs = [ imlib2 libX11 ];
17   installFlags = [ "PREFIX=$(out)" ];
19   meta = with lib; {
20     description = "Seven Segment Optical Character Recognition";
21     homepage = "https://github.com/auerswal/ssocr";
22     license = licenses.gpl3;
23     maintainers = [ maintainers.kroell ];
24   };