about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/qrencode
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/qrencode')
-rw-r--r--nixpkgs/pkgs/development/libraries/qrencode/default.nix51
1 files changed, 51 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/qrencode/default.nix b/nixpkgs/pkgs/development/libraries/qrencode/default.nix
new file mode 100644
index 000000000000..83c20fcd5120
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/qrencode/default.nix
@@ -0,0 +1,51 @@
+{ lib, stdenv, fetchurl, pkg-config, SDL2, libpng, libiconv, libobjc }:
+
+stdenv.mkDerivation (finalAttrs: rec {
+  pname = "qrencode";
+  version = "4.1.1";
+
+  outputs = [ "bin" "out" "man" "dev" ];
+
+  src = fetchurl {
+    url = "https://fukuchi.org/works/qrencode/qrencode-${version}.tar.gz";
+    sha256 = "sha256-2kSO1PUqumvLDNSMrA3VG4aSvMxM0SdDFAL8pvgXHo4=";
+  };
+
+  nativeBuildInputs = [ pkg-config ];
+
+  buildInputs = [ libiconv libpng ]
+    ++ lib.optionals stdenv.isDarwin [ libobjc ];
+
+  nativeCheckInputs = [ SDL2 ];
+
+  doCheck = false;
+
+  checkPhase = ''
+    runHook preCheck
+
+    pushd tests
+    ./test_basic.sh
+    popd
+
+    runHook postCheck
+  '';
+
+  passthru.tests = finalAttrs.finalPackage.overrideAttrs (_: {
+    configureFlags = [ "--with-tests" ];
+    doCheck = true;
+  });
+
+  meta = with lib; {
+    homepage = "https://fukuchi.org/works/qrencode/";
+    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 yana ];
+    platforms = platforms.all;
+    mainProgram = "qrencode";
+  };
+})