Skip to content

Commit

Permalink
color-transformation-language: init at 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
paperdigits committed Aug 31, 2024
1 parent bd5baa8 commit c55c04f
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
40 changes: 40 additions & 0 deletions pkgs/by-name/co/color-transformation-language/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
ilmbase,
openexr_3,
libtiff,
aces-container
}:

stdenv.mkDerivation rec {
pname = "ctl";
version = "1.5.3";

src = fetchFromGitHub {
owner = "ampas";
repo = "CTL";
rev = "ctl-${version}";
hash = "sha256-jG+38jsPw+4CEAbOG+hudfPBPbZLG+Om7PszkFa6DuI=";
};

nativeBuildInputs = [
cmake
ilmbase
openexr_3
libtiff
aces-container
];

meta = {
description = "The Color Transformation Language (CTL";
homepage = "https://github.com/ampas/CTL";
changelog = "https://github.com/ampas/CTL/blob/${src.rev}/CHANGELOG";
license = lib.licenses.unfree; # FIXME: nix-init did not find a license
maintainers = with lib.maintainers; [ paperdigits ];
mainProgram = "ctl";
platforms = lib.platforms.all;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35367,6 +35367,8 @@ with pkgs;
};

aces-container = callPackage ../by-name/ac/aces_container/default.nix { };

color-transformation-language = callPackage ../by-name/co/color-transformation-language/default.nix { };

arx-libertatis = libsForQt5.callPackage ../games/arx-libertatis { };

Expand Down

0 comments on commit c55c04f

Please sign in to comment.