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