summary refs log blame commit diff
path: root/pkgs/development/libraries/opencolorio/default.nix
blob: 28d361ea7b8d181055edb9083acc6f309d923e31 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                   
                    

                  

                                                                         











                                                                                  
{ stdenv, fetchurl, cmake, unzip }:

stdenv.mkDerivation rec {
  name = "ocio-${version}";
  version = "1.0.9";

  src = fetchurl {
    url = "https://github.com/imageworks/OpenColorIO/archive/v1.0.9.zip";
    sha256 = "14j80dgbb6f09z63aqh2874vhzpga6zksz8jmqnj1zh87x15pqnr";
  };

  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;
  };
}