mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 01:04:25 +00:00
libdmtx: 0.7.4 -> 0.7.5
This commit is contained in:
parent
10ba3c20a7
commit
d3cd7c36c3
@ -1,18 +1,27 @@
|
|||||||
{ lib, stdenv, fetchurl, pkg-config }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, autoreconfHook
|
||||||
|
, pkg-config
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libdmtx-0.7.4";
|
pname = "libdmtx";
|
||||||
|
version = "0.7.5";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "mirror://sourceforge/libdmtx/${name}.tar.bz2";
|
owner = "dmtx";
|
||||||
sha256 = "0xnxx075ycy58n92yfda2z9zgd41h3d4ik5d9l197lzsqim5hb5n";
|
repo = "libdmtx";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0wk3fkxzf9ip75v8ia54v6ywx72ajp5s6777j4ay8barpbv869rj";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "An open source software for reading and writing Data Matrix barcodes";
|
description = "An open source software for reading and writing Data Matrix barcodes";
|
||||||
homepage = "http://libdmtx.org";
|
homepage = "https://github.com/dmtx/libdmtx";
|
||||||
|
changelog = "https://github.com/dmtx/libdmtx/blob/v${version}/ChangeLog";
|
||||||
platforms = lib.platforms.all;
|
platforms = lib.platforms.all;
|
||||||
maintainers = [ ];
|
maintainers = [ ];
|
||||||
license = lib.licenses.bsd2;
|
license = lib.licenses.bsd2;
|
||||||
|
Loading…
Reference in New Issue
Block a user