summary refs log tree commit diff
path: root/pkgs/development/tools/haskell/tar/0.4.0.0.nix
blob: ebabfc2a6f2f843163c6ebab5a0745ec09a4c4be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ cabal, Cabal, filepath }:

cabal.mkDerivation (self: {
  pname = "tar";
  version = "0.4.0.0";
  sha256 = "04qijdfyiqb64q58g0bf46qfgaxqjl3kl68x6z31cv36p3hpplx3";
  buildDepends = [ Cabal filepath ];
  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
      self.stdenv.lib.maintainers.simons
    ];
  };
})