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

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