2012-10-08 12:47:32 +04:00
|
|
|
{ cabal, filepath, time }:
|
2009-07-10 02:24:02 +04:00
|
|
|
|
2011-08-10 04:35:08 +04:00
|
|
|
cabal.mkDerivation (self: {
|
2009-07-10 02:24:02 +04:00
|
|
|
pname = "tar";
|
2012-10-08 12:47:32 +04:00
|
|
|
version = "0.4.0.1";
|
|
|
|
sha256 = "0vbsv7h3zgp30mlgsw156jkv1rqy5zbm98as9haf7x15hd6jf254";
|
|
|
|
buildDepends = [ filepath time ];
|
2009-07-10 02:24:02 +04:00
|
|
|
meta = {
|
2011-08-11 17:03:51 +04:00
|
|
|
description = "Reading, writing and manipulating \".tar\" archive files.";
|
2011-08-10 04:35:08 +04:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 14:21:28 +04:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-07-10 02:24:02 +04:00
|
|
|
};
|
|
|
|
})
|