zxing-cpp 2.1.0 -> 2.2.1 https://repology.org/project/zxing-cpp/versions attrpath: zxing-cpp Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/532qbnbjjhhavxvqfz6hjm4mgdjrr6l6-packages.json.drv building '/nix/store/532qbnbjjhhavxvqfz6hjm4mgdjrr6l6-packages.json.drv'... Going to be running update for following packages: - zxing-cpp-2.1.0 Press Enter key to continue... Running update for: - zxing-cpp-2.1.0: UPDATING ... - zxing-cpp-2.1.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/libraries/zxing-cpp/default.nix b/pkgs/development/libraries/zxing-cpp/default.nix index 1c010638693e..cd5d10551192 100644 --- a/pkgs/development/libraries/zxing-cpp/default.nix +++ b/pkgs/development/libraries/zxing-cpp/default.nix @@ -9,13 +9,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "zxing-cpp"; - version = "2.1.0"; + version = "2.2.1"; src = fetchFromGitHub { owner = "zxing-cpp"; repo = "zxing-cpp"; rev = "v${finalAttrs.version}"; - hash = "sha256-B/jGsHImRfj0iEio2b6R6laWBI1LL3OI407O7sren8s="; + hash = "sha256-teFspdATn9M7Z1vSr/7PdJx/xAv+TVai8rIekxqpBZk="; }; nativeBuildInputs = [ No auto update branch exists Old version 2.1.0" not present in staging derivation file with contents: { lib , stdenv , fetchFromGitHub , cmake , pkg-config , python3 , gitUpdater }: stdenv.mkDerivation (finalAttrs: { pname = "zxing-cpp"; version = "2.2.1"; src = fetchFromGitHub { owner = "zxing-cpp"; repo = "zxing-cpp"; rev = "v${finalAttrs.version}"; hash = "sha256-teFspdATn9M7Z1vSr/7PdJx/xAv+TVai8rIekxqpBZk="; }; nativeBuildInputs = [ cmake pkg-config ]; cmakeFlags = [ "-DBUILD_EXAMPLES=OFF" "-DBUILD_BLACKBOX_TESTS=OFF" ]; passthru = { tests = { inherit (python3.pkgs) zxing-cpp; }; updateScript = gitUpdater { rev-prefix = "v"; }; }; meta = { homepage = "https://github.com/zxing-cpp/zxing-cpp"; description = "C++ port of zxing (a Java barcode image processing library)"; longDescription = '' ZXing-C++ ("zebra crossing") is an open-source, multi-format 1D/2D barcode image processing library implemented in C++. It was originally ported from the Java ZXing Library but has been developed further and now includes many improvements in terms of quality and performance. It can both read and write barcodes in a number of formats. ''; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ AndersonTorres lukegb ]; platforms = lib.platforms.unix; }; })