nixpkgs/pkgs/development/libraries/haskell/tar/default.nix

15 lines
441 B
Nix
Raw Normal View History

2012-10-08 04:47:32 -04:00
{ cabal, filepath, time }:
cabal.mkDerivation (self: {
pname = "tar";
2012-10-08 04:47:32 -04:00
version = "0.4.0.1";
sha256 = "0vbsv7h3zgp30mlgsw156jkv1rqy5zbm98as9haf7x15hd6jf254";
buildDepends = [ filepath time ];
meta = {
2013-10-16 11:09:26 -04:00
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 ];
};
})