lol
fork

Configure Feed

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

at 22.05-pre 23 lines 630 B view raw
1{ lib, stdenv, fetchurl, static ? false }: 2 3stdenv.mkDerivation rec { 4 pname = "libjpeg"; 5 version = "9d"; 6 7 src = fetchurl { 8 url = "http://www.ijg.org/files/jpegsrc.v${version}.tar.gz"; 9 sha256 = "1vkip9rz4hz8f31a2kl7wl7f772wg1z0fg1fbd1653wzwlxllhvc"; 10 }; 11 12 configureFlags = lib.optional static "--enable-static --disable-shared"; 13 14 outputs = [ "bin" "dev" "out" "man" ]; 15 16 meta = with lib; { 17 homepage = "https://www.ijg.org/"; 18 description = "A library that implements the JPEG image file format"; 19 maintainers = with maintainers; [ ]; 20 license = licenses.free; 21 platforms = platforms.unix; 22 }; 23}