haskell-tar: dropped obsolete version 0.3.2.0

This commit is contained in:
Peter Simons
2013-02-24 10:44:17 +01:00
parent c2fc8c6da3
commit d4b8008a44
3 changed files with 1 additions and 17 deletions

View File

@@ -0,0 +1,14 @@
{ cabal, filepath, time }:
cabal.mkDerivation (self: {
pname = "tar";
version = "0.4.0.1";
sha256 = "0vbsv7h3zgp30mlgsw156jkv1rqy5zbm98as9haf7x15hd6jf254";
buildDepends = [ filepath time ];
meta = {
description = "Reading, writing and manipulating \".tar\" archive files.";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})