2021-05-20 23:08:51 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, python3, fixDarwinDylibNames }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "jxrlib";
|
|
|
|
version = "1.1";
|
|
|
|
|
|
|
|
# Use the source from a fork on github because CodePlex does not
|
|
|
|
# deliver an easily downloadable tarball.
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "4creators";
|
|
|
|
repo = pname;
|
|
|
|
rev = "f7521879862b9085318e814c6157490dd9dbbdb4";
|
|
|
|
sha256 = "0rk3hbh00nw0wgbfbqk1szrlfg3yq7w6ar16napww3nrlm9cj65w";
|
|
|
|
};
|
|
|
|
|
2021-07-14 22:03:04 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace "cc" "$CC"
|
|
|
|
'' + lib.optionalString stdenv.isDarwin ''
|
2020-09-25 04:45:31 +00:00
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace '-shared' '-dynamiclib -undefined dynamic_lookup' \
|
|
|
|
--replace '.so' '.dylib'
|
|
|
|
'';
|
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
nativeBuildInputs = [ python3 ] ++ lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
2021-03-20 04:20:00 +00:00
|
|
|
|
|
|
|
strictDeps = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
makeFlags = [ "DIR_INSTALL=$(out)" "SHARED=1" ];
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Implementation of the JPEG XR image codec standard";
|
|
|
|
homepage = "https://jxrlib.codeplex.com";
|
|
|
|
license = licenses.bsd2;
|
2020-09-25 04:45:31 +00:00
|
|
|
platforms = platforms.unix;
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
|
|
|
};
|
|
|
|
}
|