depot/third_party/nixpkgs/pkgs/development/libraries/jxrlib/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

33 lines
952 B
Nix

{ lib, stdenv, fetchFromGitHub, python }:
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";
};
postPatch = lib.optionalString stdenv.isDarwin ''
substituteInPlace Makefile \
--replace '-shared' '-dynamiclib -undefined dynamic_lookup' \
--replace '.so' '.dylib'
'';
nativeBuildInputs = [ python ];
makeFlags = [ "DIR_INSTALL=$(out)" "SHARED=1" ];
meta = with lib; {
description = "Implementation of the JPEG XR image codec standard";
homepage = "https://jxrlib.codeplex.com";
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = with maintainers; [ romildo ];
};
}