Added jpeg library for Haskell.
svn path=/nixpkgs/trunk/; revision=21096
This commit is contained in:
parent
7d44fab64f
commit
27a26afc55
2 changed files with 18 additions and 0 deletions
14
pkgs/development/libraries/haskell/jpeg/default.nix
Normal file
14
pkgs/development/libraries/haskell/jpeg/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{cabal, mtl}:
|
||||
|
||||
cabal.mkDerivation (self : {
|
||||
pname = "jpeg";
|
||||
version = "0.0.1";
|
||||
sha256 = "848e047cfec5781a28f472e9cd27d016362211d88dd6adb4f826c37d29d8bba6";
|
||||
propagatedBuildInputs = [mtl];
|
||||
meta = {
|
||||
description = "JPEG decompression library";
|
||||
license = "BSD";
|
||||
maintainers = [self.stdenv.lib.maintainers.andres];
|
||||
};
|
||||
})
|
||||
|
|
@ -372,6 +372,10 @@ rec {
|
|||
inherit cabal mtl parsec;
|
||||
};
|
||||
|
||||
jpeg = import ../development/libraries/haskell/jpeg {
|
||||
inherit cabal mtl;
|
||||
};
|
||||
|
||||
json = import ../development/libraries/haskell/json {
|
||||
inherit cabal mtl;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue