2008-11-13 14:31:10 +01:00
|
|
|
args :
|
|
|
|
let
|
|
|
|
lib = args.lib;
|
|
|
|
fetchurl = args.fetchurl;
|
|
|
|
|
2010-02-20 12:56:23 +01:00
|
|
|
version = lib.attrByPath ["version"] "0.7.2" args;
|
2008-11-13 14:31:10 +01:00
|
|
|
buildInputs = with args; [
|
2009-03-19 14:59:00 +01:00
|
|
|
libpng libtiff libjpeg librsvg imagemagick pkgconfig
|
2010-02-20 12:56:23 +01:00
|
|
|
zlib libX11 bzip2 libtool freetype fontconfig
|
2010-05-18 23:08:19 +02:00
|
|
|
ghostscript jasper
|
2008-11-13 14:31:10 +01:00
|
|
|
];
|
|
|
|
in
|
|
|
|
rec {
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://prdownloads.sourceforge.net/libdmtx/libdmtx-${version}.tar.bz2";
|
2010-02-20 12:56:23 +01:00
|
|
|
sha256 = "0iin2j3ad7ldj32dwc04g28k54iv3lrc5121rgyphm7l9hvigbvk";
|
2008-11-13 14:31:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
inherit buildInputs;
|
|
|
|
configureFlags = [];
|
|
|
|
|
|
|
|
/* doConfigure should be specified separately */
|
|
|
|
phaseNames = ["doConfigure" "doMakeInstall"];
|
|
|
|
|
|
|
|
name = "dmtx-" + version;
|
|
|
|
meta = {
|
|
|
|
description = "DataMatrix (2D bar code) processing tools.";
|
2009-07-07 17:05:15 +02:00
|
|
|
maintainers = [args.lib.maintainers.raskin];
|
2009-09-29 08:53:00 +02:00
|
|
|
platforms = args.lib.platforms.linux;
|
2008-11-13 14:31:10 +01:00
|
|
|
};
|
|
|
|
}
|