nixpkgs/pkgs/development/libraries/qrencode/default.nix

48 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, SDL2, libpng, libiconv }:
2019-01-01 16:19:07 +00:00
stdenv.mkDerivation rec {
pname = "qrencode";
2020-11-11 21:51:22 +00:00
version = "4.1.1";
2019-01-01 16:19:07 +00:00
outputs = [ "bin" "out" "man" "dev" ];
src = fetchurl {
url = "https://fukuchi.org/works/qrencode/qrencode-${version}.tar.gz";
2020-11-11 21:51:22 +00:00
sha256 = "sha256-2kSO1PUqumvLDNSMrA3VG4aSvMxM0SdDFAL8pvgXHo4=";
2019-01-01 16:19:07 +00:00
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ SDL2 libpng ] ++ lib.optionals stdenv.isDarwin [ libiconv ];
2019-01-01 16:19:07 +00:00
2019-01-01 16:38:11 +00:00
configureFlags = [
"--with-tests"
];
2019-01-01 16:19:07 +00:00
doCheck = true;
2019-01-01 16:38:11 +00:00
checkPhase = ''
runHook preCheck
pushd tests
./test_basic.sh
popd
runHook postCheck
'';
meta = with lib; {
homepage = "https://fukuchi.org/works/qrencode/";
2019-01-01 16:19:07 +00:00
description = "C library for encoding data in a QR Code symbol";
longDescription = ''
Libqrencode is a C library for encoding data in a QR Code symbol,
a kind of 2D symbology that can be scanned by handy terminals
such as a mobile phone with CCD.
'';
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ adolfogc yegortimoshenko ];
platforms = platforms.all;
};
}