mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Added DataMatrix (2D bar code) processing utilities
svn path=/nixpkgs/trunk/; revision=13281
This commit is contained in:
parent
957a8b876a
commit
6f509e20a3
27
pkgs/tools/graphics/dmtx/default.nix
Normal file
27
pkgs/tools/graphics/dmtx/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
args :
|
||||
let
|
||||
lib = args.lib;
|
||||
fetchurl = args.fetchurl;
|
||||
|
||||
version = lib.getAttr ["version"] "0.5.2" args;
|
||||
buildInputs = with args; [
|
||||
libpng libtiff
|
||||
];
|
||||
in
|
||||
rec {
|
||||
src = fetchurl {
|
||||
url = "http://prdownloads.sourceforge.net/libdmtx/libdmtx-${version}.tar.bz2";
|
||||
sha256 = "1xx61gykmq07m2vkqazns5whj8rv9nhwhjs6dakz9ai4qh7d53qz";
|
||||
};
|
||||
|
||||
inherit buildInputs;
|
||||
configureFlags = [];
|
||||
|
||||
/* doConfigure should be specified separately */
|
||||
phaseNames = ["doConfigure" "doMakeInstall"];
|
||||
|
||||
name = "dmtx-" + version;
|
||||
meta = {
|
||||
description = "DataMatrix (2D bar code) processing tools.";
|
||||
};
|
||||
}
|
@ -7049,6 +7049,10 @@ let
|
||||
inherit (xlibs) libX11 libXinerama;
|
||||
};
|
||||
|
||||
dmtx = builderDefsPackage (import ../tools/graphics/dmtx) {
|
||||
inherit libpng libtiff;
|
||||
};
|
||||
|
||||
dwm = import ../applications/window-managers/dwm {
|
||||
inherit fetchurl stdenv;
|
||||
inherit (xlibs) libX11 libXinerama;
|
||||
|
Loading…
Reference in New Issue
Block a user