Files
nixpkgs/pkgs/by-name/ch/charls/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

41 lines
1.0 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
stdenv.mkDerivation rec {
pname = "charls";
version = "2.4.2";
src = fetchFromGitHub {
owner = "team-charls";
repo = "charls";
tag = version;
hash = "sha256-c1wrk6JLcAH7TFPwjARlggaKXrAsLWyUQF/3WHlqoqg=";
};
postPatch = ''
substituteInPlace src/charls-template.pc \
--replace '$'{prefix}/@CMAKE_INSTALL_LIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@ \
--replace '$'{prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@
'';
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
# note this only runs some basic tests, not the full test suite,
# but the recommended `charlstest -unittest` fails with an inscrutable C++ IO error
doCheck = true;
meta = with lib; {
homepage = "https://github.com/team-charls/charls";
description = "JPEG-LS library implementation in C++";
maintainers = with maintainers; [ bcdarwin ];
license = licenses.bsd3;
platforms = platforms.unix;
};
}