nixpkgs/pkgs/development/libraries/libjpeg/default.nix
Eelco Dolstra e0dd4232e1 * libjpeg updated to v8b.
svn path=/nixpkgs/branches/x-updates/; revision=22634
2010-07-18 21:51:53 +00:00

17 lines
372 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "libjpeg-8";
src = fetchurl {
url = http://www.ijg.org/files/jpegsrc.v8b.tar.gz;
sha256 = "19vl6587pyhz45f14yipnsnpni4iz6j0wdzwyblbm4f5vs721rin";
};
meta = {
homepage = http://www.ijg.org/;
description = "A library that implements the JPEG image file format";
license = "free";
};
}