python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libdmtx / default.nix
blob4c5ef2c33140c73cb558830e624d113d3832e3cc
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , autoreconfHook
5 , pkg-config
6 }:
8 stdenv.mkDerivation rec {
9   pname = "libdmtx";
10   version = "0.7.7";
12   src = fetchFromGitHub {
13     owner = "dmtx";
14     repo = "libdmtx";
15     rev = "v${version}";
16     sha256 = "sha256-UQy8iFfl8BNT5cBUMVF1tIScFPfHekSofaebtel9JWk=";
17   };
19   nativeBuildInputs = [ autoreconfHook pkg-config ];
21   meta = {
22     description = "An open source software for reading and writing Data Matrix barcodes";
23     homepage = "https://github.com/dmtx/libdmtx";
24     changelog = "https://github.com/dmtx/libdmtx/blob/v${version}/ChangeLog";
25     platforms = lib.platforms.all;
26     maintainers = [ ];
27     license = lib.licenses.bsd2;
28   };