mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
Add OpenColorIO, a color management framework. Used by Blender
This commit is contained in:
parent
67a1becfdc
commit
8ef25cf876
21
pkgs/development/libraries/opencolorio/default.nix
Normal file
21
pkgs/development/libraries/opencolorio/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ stdenv, fetchurl, cmake, unzip }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "ocio-${version}";
|
||||||
|
version = "1.0.8";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/imageworks/OpenColorIO/archive/v1.0.8.zip";
|
||||||
|
sha256 = "1l70bf40dz2znm9rh3r6xs9d6kp719y1djayb7dc89khfqqbx2di";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ cmake unzip ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://opencolorio.org;
|
||||||
|
description = "A color management framework for visual effects and animation";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = [ maintainers.goibhniu ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user