nixpkgs/pkgs/tools/graphics/argyllcms/default.nix

123 lines
3.3 KiB
Nix
Raw Normal View History

2015-09-07 09:41:39 +00:00
{ stdenv, fetchzip, jam, unzip, libX11, libXxf86vm, libXrandr, libXinerama
, libXrender, libXext, libtiff, libjpeg, libpng, libXScrnSaver, writeText
, libXdmcp, libXau, lib, openssl }:
2021-07-14 15:10:11 +00:00
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "argyllcms";
2021-07-14 15:10:11 +00:00
version = "2.1.2";
2015-09-07 09:41:39 +00:00
src = fetchzip {
# Kind of flacky URL, it was reaturning 406 and inconsistent binaries for a
# while on me. It might be good to find a mirror
url = "https://www.argyllcms.com/Argyll_V${version}_src.zip";
2020-01-20 02:25:16 +00:00
sha256 = "1bsi795kphr1a8l2kvvm9qfkvgfpimds4ijalnmg23wnr8691md1";
# The argyllcms web server doesn't like curl ...
curlOpts = "--user-agent 'Mozilla/5.0'";
};
2015-09-17 04:58:53 +00:00
patches = [ ./gcc5.patch ];
# The contents of this file comes from the Jamtop file from the
# root of the ArgyllCMS distribution, rewritten to pick up Nixpkgs
# library paths. When ArgyllCMS is updated, make sure that changes
# in that file is reflected here.
jamTop = writeText "argyllcms_jamtop" ''
DESTDIR = "/" ;
REFSUBDIR = "ref" ;
2015-09-07 09:41:39 +00:00
# Keep this DESTDIR anchored to Jamtop. PREFIX is used literally
ANCHORED_PATH_VARS = DESTDIR ;
2015-09-07 09:41:39 +00:00
# Tell standalone libraries that they are part of Argyll:
DEFINES += ARGYLLCMS ;
2015-09-07 09:41:39 +00:00
# enable serial instruments & support
USE_SERIAL = true ;
# enable fast serial instruments & support
USE_FAST_SERIAL = true ; # (Implicit in USE_SERIAL too)
# enable USB instruments & support
USE_USB = true ;
# enable dummy Demo Instrument (only if code is available)
USE_DEMOINST = true ;
# Use ArgyllCMS version of libusb (deprecated - don't use)
USE_LIBUSB = false ;
# For testing CCast
DEFINES += CCTEST_PATTERN ;
JPEGLIB = ;
JPEGINC = ;
HAVE_JPEG = true ;
TIFFLIB = ;
TIFFINC = ;
HAVE_TIFF = true ;
2015-09-07 09:41:39 +00:00
PNGLIB = ;
PNGINC = ;
HAVE_PNG = true ;
ZLIB = ;
ZINC = ;
HAVE_Z = true ;
SSLLIB = ;
SSLINC = ;
HAVE_SSL = true ;
LINKFLAGS +=
${lib.concatStringsSep " " (map (x: "-L${x}/lib") buildInputs)}
-ldl -lrt -lX11 -lXext -lXxf86vm -lXinerama -lXrandr -lXau -lXdmcp -lXss
2015-09-07 09:41:39 +00:00
-ljpeg -ltiff -lpng -lssl ;
'';
2013-01-13 10:33:45 +00:00
nativeBuildInputs = [ jam unzip ];
preConfigure = ''
cp ${jamTop} Jamtop
substituteInPlace Makefile --replace "-j 3" "-j $NIX_BUILD_CORES"
2015-09-07 09:41:39 +00:00
# Remove tiff, jpg and png to be sure the nixpkgs-provided ones are used
rm -rf tiff jpg png
unset AR
'';
2015-09-07 09:41:39 +00:00
buildInputs = [
libtiff libjpeg libpng libX11 libXxf86vm libXrandr libXinerama libXext
libXrender libXScrnSaver libXdmcp libXau openssl
];
2019-10-26 15:39:27 +00:00
buildFlags = [ "all" ];
2019-10-26 15:39:27 +00:00
makeFlags = [
"PREFIX=${placeholder "out"}"
2019-10-26 15:39:27 +00:00
];
2015-09-07 09:41:39 +00:00
# Install udev rules, but remove lines that set up the udev-acl
# stuff, since that is handled by udev's own rules (70-udev-acl.rules)
2015-09-07 09:41:39 +00:00
#
# Move ref to a better place (there must be a way to make the install target
# do that for us)
postInstall = ''
rm -v $out/bin/License.txt
mkdir -p $out/etc/udev/rules.d
2015-09-07 09:41:39 +00:00
sed -i '/udev-acl/d' usb/55-Argyll.rules
cp -v usb/55-Argyll.rules $out/etc/udev/rules.d/
mkdir -p $out/share/
mv $out/ref $out/share/argyllcms
'';
meta = with lib; {
homepage = "http://www.argyllcms.com";
description = "Color management system (compatible with ICC)";
license = licenses.gpl3;
maintainers = [];
platforms = platforms.linux;
};
}