nixpkgs/pkgs/development/libraries/charls/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

36 lines
1 KiB
Nix

{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "charls";
version = "2.4.2";
src = fetchFromGitHub {
owner = "team-charls";
repo = pname;
rev = "refs/tags/${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;
};
}