summary refs log tree commit diff
path: root/pkgs/tools/archivers/gnutar/default.nix
blob: e2d9b9eee8bad63d52b6893ba900601a317359ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "gnutar-1.20";
  
  src = fetchurl {
    url = mirror://gnu/tar/tar-1.20.tar.bz2;
    sha256 = "1swx3whm2vh0qzq8v04vgwk5zds6zlznk52xwivj7p2szcxg72xy";
  };
  
  patches = [./implausible.patch];

  meta = {
    homepage = http://www.gnu.org/software/grep/;
    description = "GNU implementation of the tar archiver";
  };
}