Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 23 lines 560 B view raw
1{ stdenv, callPackage, cmake, pkgconfig, ilmbase, libtiff, openexr }: 2 3let 4 source = callPackage ./source.nix { }; 5in 6stdenv.mkDerivation { 7 name = "ctl-${source.version}"; 8 9 src = source.src; 10 11 nativeBuildInputs = [ pkgconfig ]; 12 buildInputs = [ cmake libtiff ilmbase openexr ]; 13 14 meta = with stdenv.lib; { 15 description = "Color Transformation Language"; 16 homepage = http://ampasctl.sourceforge.net; 17 license = "A.M.P.A.S"; 18 platforms = platforms.all; 19 maintainers = with maintainers; [ wkennington ]; 20 }; 21 22 passthru.source = source; 23}