summary refs log tree commit diff
path: root/pkgs/development/libraries/libdmtx/default.nix
blob: bd23b6831a0ca2506b4492292c1c9424becb2358 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, pkg-config }:

stdenv.mkDerivation rec {
  name = "libdmtx-0.7.4";

  src = fetchurl {
    url = "mirror://sourceforge/libdmtx/${name}.tar.bz2";
    sha256 = "0xnxx075ycy58n92yfda2z9zgd41h3d4ik5d9l197lzsqim5hb5n";
  };

  nativeBuildInputs = [ pkg-config ];

  meta = {
    description = "An open source software for reading and writing Data Matrix barcodes";
    homepage = "http://libdmtx.org";
    platforms = stdenv.lib.platforms.all;
    maintainers = [ ];
    license = stdenv.lib.licenses.bsd2;
  };
}