2013-12-26 19:37:03 +00:00
|
|
|
{ cabal, exceptions, filepath, transformers }:
|
2012-02-06 14:27:30 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "temporary";
|
2014-05-15 14:09:40 +00:00
|
|
|
version = "1.2.0.3";
|
|
|
|
sha256 = "0is67bmsjmbbw6wymhis8wyq9gax3sszm573p5719fx2c9z9r24a";
|
2013-12-26 19:37:03 +00:00
|
|
|
buildDepends = [ exceptions filepath transformers ];
|
2014-03-27 09:58:06 +00:00
|
|
|
jailbreak = true;
|
2012-02-06 14:27:30 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "http://www.github.com/batterseapower/temporary";
|
|
|
|
description = "Portable temporary file and directory support for Windows and Unix, based on code from Cabal";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 22:36:36 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-02-06 14:27:30 +00:00
|
|
|
};
|
|
|
|
})
|