lol
at 18.03-beta 28 lines 708 B view raw
1{ stdenv, fetchurl, cmake, unzip }: 2 3stdenv.mkDerivation rec { 4 name = "opencolorio-${version}"; 5 version = "1.0.9"; 6 7 src = fetchurl { 8 url = "https://github.com/imageworks/OpenColorIO/archive/v1.0.9.zip"; 9 sha256 = "14j80dgbb6f09z63aqh2874vhzpga6zksz8jmqnj1zh87x15pqnr"; 10 }; 11 12 outputs = [ "bin" "out" "dev" ]; 13 14 buildInputs = [ cmake unzip ]; 15 16 postInstall = '' 17 rm $out/lib/*.a 18 mkdir -p $bin/bin; mv $out/bin $bin/ 19 ''; 20 21 meta = with stdenv.lib; { 22 homepage = http://opencolorio.org; 23 description = "A color management framework for visual effects and animation"; 24 license = licenses.bsd3; 25 maintainers = [ maintainers.goibhniu ]; 26 platforms = platforms.linux; 27 }; 28}