lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v206 26 lines 628 B view raw
1{ stdenv, fetchurl 2, unzip }: 3 4stdenv.mkDerivation rec { 5 6 name = "cimg-${version}"; 7 version = "1.5.9"; 8 9 src = fetchurl { 10 url = "http://downloads.sourceforge.net/project/cimg/CImg-${version}.zip"; 11 sha256 = "1xn20643gcbl76kvy9ajhwbyjjb73mg65q32ma8mdkwn1qhn7f7c"; 12 }; 13 14 buildInputs = with stdenv.lib; 15 [ unzip ]; 16 17 builder = ./builder.sh; 18 19 meta = with stdenv.lib; { 20 description = "A small, open source, C++ toolkit for image processing"; 21 homepage = http://cimg.sourceforge.net/; 22 license = licenses.cecill-c; 23 maintainers = [ maintainers.AndersonTorres ]; 24 platforms = platforms.unix; 25 }; 26}