2012-02-16 06:05:41 -08:00
|
|
|
{ cabal, enumerator, transformers, zlibBindings }:
|
2011-08-07 15:51:22 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 15:51:22 -07:00
|
|
|
pname = "zlib-enum";
|
2012-09-17 07:17:58 -07:00
|
|
|
version = "0.2.3";
|
|
|
|
sha256 = "0lr72h4wlclav0p0j5wwaxifq97lw7rh3612lva73fg45akl9di1";
|
2011-08-09 16:00:20 -07:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-02-16 06:05:41 -08:00
|
|
|
buildDepends = [ enumerator transformers zlibBindings ];
|
2011-08-07 15:51:22 -07:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/maltem/zlib-enum";
|
|
|
|
description = "Enumerator interface for zlib compression";
|
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 03:21:28 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 15:51:22 -07:00
|
|
|
};
|
|
|
|
})
|