about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/graphics/dmtx-utils/default.nix
blob: 776ce333da647e8bcbcf6d2d169a3f12dad1d3b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{stdenv, fetchurl, libdmtx, pkgconfig, imagemagick}:
let
  s = # Generated upstream information
  rec {
    baseName="dmtx-utils";
    version="0.7.4";
    name="${baseName}-${version}";
    hash="1di8ymlziy9856abd6rb72z0zqzmrff4r3vql0q9r5sk5ax4s417";
    url="mirror://sourceforge/project/libdmtx/libdmtx/0.7.4/dmtx-utils-0.7.4.tar.gz";
    sha256="1di8ymlziy9856abd6rb72z0zqzmrff4r3vql0q9r5sk5ax4s417";
  };
  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [
    libdmtx imagemagick
  ];
in
stdenv.mkDerivation {
  inherit (s) name version;
  inherit nativeBuildInputs buildInputs;
  src = fetchurl {
    inherit (s) url sha256;
  };
  meta = {
    inherit (s) version;
    description = "Data matrix command-line utilities";
    license = stdenv.lib.licenses.lgpl2 ;
    maintainers = [stdenv.lib.maintainers.raskin];
    platforms = stdenv.lib.platforms.unix;
  };
}