ctl: builds with ilmbase 2.3.x (#61468)

This commit is contained in:
Renaud 2019-05-13 23:48:21 +02:00 committed by GitHub
parent 3db7214ec4
commit 816fd81ffe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 24 deletions

View file

@ -1,22 +1,31 @@
{ stdenv, callPackage, cmake, pkgconfig, ilmbase, libtiff, openexr }:
{ stdenv, fetchFromGitHub, fetchpatch, cmake, pkgconfig, ilmbase, libtiff, openexr }:
let
source = callPackage ./source.nix { };
in
stdenv.mkDerivation {
name = "ctl-${source.version}";
stdenv.mkDerivation rec {
pname = "ctl";
version = "1.5.2";
src = source.src;
src = fetchFromGitHub {
owner = "ampas";
repo = pname;
rev = "${pname}-${version}";
sha256 = "0a698rd1cmixh3mk4r1xa6rjli8b8b7dbx89pb43xkgqxy67glwx";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ cmake libtiff ilmbase openexr ];
patches = [
(fetchpatch {
name = "ctl-1.5.2-ilm_230.patch";
url = "https://src.fedoraproject.org/rpms/CTL/raw/9d7c15a91bccdc0a9485d463bf2789be72e6b17d/f/ctl-1.5.2-ilm_230.patch";
sha256 = "0mdx7llwrm0q8ai53zhyxi40i9h5s339dbkqpqv30yzi2xpnfj3d";
})
];
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ libtiff ilmbase openexr ];
meta = with stdenv.lib; {
description = "Color Transformation Language";
homepage = http://ampasctl.sourceforge.net;
license = "A.M.P.A.S";
homepage = "https://github.com/ampas/CTL";
license = "A.M.P.A.S"; # BSD-derivative, free but GPL incompatible
platforms = platforms.all;
};
passthru.source = source;
}

View file

@ -1,11 +0,0 @@
{ fetchFromGitHub }:
rec {
version = "1.5.2";
src = fetchFromGitHub {
owner = "ampas";
repo = "CTL";
rev = "ctl-${version}";
sha256 = "0a698rd1cmixh3mk4r1xa6rjli8b8b7dbx89pb43xkgqxy67glwx";
};
}