mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 04:03:56 +00:00
2824b718a1
As described in https://logs.ofborg.org/?key=nixos/nixpkgs.265748&attempt_id=2ec57e7f-4411-460d-8dd2-065a2b5bdce2: ``` error: cycle detected in build of '/nix/store/qh4xqia36pzwpil4bfy2sydby0nclksl-jasper-4.0.1.drv' in the references of output 'lib' from output 'out' ```
60 lines
2.1 KiB
Nix
60 lines
2.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, pkg-config
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "jasper";
|
|
version = "4.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jasper-software";
|
|
repo = "jasper";
|
|
rev = "version-${finalAttrs.version}";
|
|
hash = "sha256-IQBszOKou5Q1lgDy2LICHFmOKYJ3/djmuHGNalVHeBQ=";
|
|
};
|
|
|
|
outputs = [ "out" "doc" "man" ];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
# Since "build" already exists and is populated, cmake tries to use it,
|
|
# throwing uncomprehensible error messages...
|
|
cmakeBuildDir = "build-directory";
|
|
|
|
strictDeps = true;
|
|
|
|
meta = {
|
|
homepage = "https://jasper-software.github.io/jasper/";
|
|
description = "Image processing/coding toolkit";
|
|
longDescription = ''
|
|
JasPer is a software toolkit for the handling of image data. The software
|
|
provides a means for representing images, and facilitates the manipulation
|
|
of image data, as well as the import/export of such data in numerous
|
|
formats (e.g., JPEG-2000 JP2, JPEG, PNM, BMP, Sun Rasterfile, and
|
|
PGX). The import functionality supports the auto-detection (i.e.,
|
|
automatic determination) of the image format, eliminating the need to
|
|
explicitly identify the format of coded input data. A simple color
|
|
management engine is also provided in order to allow the accurate
|
|
representation of color. Partial support is included for the ICC color
|
|
profile file format, an industry standard for specifying color.
|
|
|
|
The JasPer software consists of a library and several application
|
|
programs. The code is written in the C programming language. This language
|
|
was chosen primarily due to the availability of C development environments
|
|
for most computing platforms when JasPer was first developed, circa 1999.
|
|
'';
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
platforms = lib.platforms.unix;
|
|
|
|
# The value of __STDC_VERSION__ cannot be automatically determined when cross-compiling.
|
|
broken = stdenv.buildPlatform != stdenv.hostPlatform;
|
|
};
|
|
})
|