summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/tar/default.nix
blob: 7ee52e79e030493f5ffee93c0f49982b7126afc6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 ];
  };
})