2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, filepath }:
|
2009-07-10 00:24:02 +02:00
|
|
|
|
2011-08-10 02:35:08 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2009-07-10 00:24:02 +02:00
|
|
|
pname = "tar";
|
2012-01-24 16:06:39 +01:00
|
|
|
version = "0.3.2.0";
|
|
|
|
sha256 = "0yplrfai8bwihyn18whi0jiz1qzll9hgbc37xcy2jkr28480jba9";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ filepath ];
|
2009-07-10 00:24:02 +02:00
|
|
|
meta = {
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "Reading, writing and manipulating \".tar\" archive files.";
|
2011-08-10 02:35:08 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-07-10 00:24:02 +02:00
|
|
|
};
|
|
|
|
})
|