bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
29 lines
681 B
Nix
29 lines
681 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, pkg-config
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libdmtx";
|
|
version = "0.7.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dmtx";
|
|
repo = "libdmtx";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-UQy8iFfl8BNT5cBUMVF1tIScFPfHekSofaebtel9JWk=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
|
|
meta = {
|
|
description = "Open source software for reading and writing Data Matrix barcodes";
|
|
homepage = "https://github.com/dmtx/libdmtx";
|
|
changelog = "https://github.com/dmtx/libdmtx/blob/v${version}/ChangeLog";
|
|
platforms = lib.platforms.all;
|
|
maintainers = [ ];
|
|
license = lib.licenses.bsd2;
|
|
};
|
|
}
|