Skip to content

Commit

Permalink
color-transformation-languge: init at 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
paperdigits committed Sep 1, 2024
1 parent 67bc75d commit 4793929
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/package.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 = "Programming language for digital color management.";
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/package.nix { };

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

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

Expand Down

0 comments on commit 4793929

Please sign in to comment.