nixpkgs/pkgs/tools/archivers/gnutar/1.15.1.nix
Eelco Dolstra de25bee83d * Of course, the latest GNU tar has the same gnulib header file shit
as coreutils.

svn path=/nixpkgs/trunk/; revision=6880
2006-10-27 20:14:19 +00:00

10 lines
205 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "gnutar-1.15.1";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/tar-1.15.1.tar.bz2;
md5 = "57da3c38f8e06589699548a34d5a5d07";
};
}