about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/jpeg/default.nix
blob: f9d5b6efa8f18ff86f3ed2af5d86b41442bf48d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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];
  };
})