Added JasPer JPEG 2000 library
svn path=/nixpkgs/branches/stdenv-updates/; revision=10160
This commit is contained in:
parent
9e0a642955
commit
0a1ad1080c
|
@ -0,0 +1,18 @@
|
|||
args: with args;
|
||||
stdenv.mkDerivation rec {
|
||||
name = "jasper-1.900.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.ece.uvic.ca/~mdadams/jasper/software/${name}.zip";
|
||||
sha256 = "154l7zk7yh3v8l2l6zm5s2alvd2fzkp6c9i18iajfbna5af5m43b";
|
||||
};
|
||||
|
||||
buildInputs = [ unzip libjpeg xproto libX11 libICE freeglut mesa libXmu
|
||||
libXi libXext libXt ];
|
||||
configureFlags = "--enable-shared --disable-static --with-x";
|
||||
|
||||
meta = {
|
||||
homepage = http://www.ece.uvic.ca/~mdadams/jasper/;
|
||||
description = "JasPer JPEG2000 Library";
|
||||
};
|
||||
}
|
|
@ -1980,6 +1980,11 @@ rec {
|
|||
|
||||
intltool = intltoolFun {version = "0.36.2";} null;
|
||||
|
||||
jasper = import ../development/libraries/jasper {
|
||||
inherit fetchurl stdenv unzip libjpeg freeglut mesa;
|
||||
inherit (xlibs) xproto libX11 libICE libXmu libXi libXext libXt;
|
||||
};
|
||||
|
||||
lablgtk = import ../development/libraries/lablgtk {
|
||||
inherit fetchurl stdenv ocaml pkgconfig;
|
||||
inherit (gtkLibs) gtk;
|
||||
|
|
Loading…
Reference in New Issue