mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
ctl: builds with ilmbase 2.3.x (#61468)
This commit is contained in:
parent
3db7214ec4
commit
816fd81ffe
2 changed files with 22 additions and 24 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
{ fetchFromGitHub }:
|
||||
rec {
|
||||
version = "1.5.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ampas";
|
||||
repo = "CTL";
|
||||
rev = "ctl-${version}";
|
||||
sha256 = "0a698rd1cmixh3mk4r1xa6rjli8b8b7dbx89pb43xkgqxy67glwx";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue