GNU Tar 1.22 (untested).
svn path=/nixpkgs/branches/stdenv-updates/; revision=14433
This commit is contained in:
parent
7db732b8a9
commit
01a662d3e0
|
@ -1,17 +1,34 @@
|
||||||
{stdenv, fetchurl}:
|
{stdenv, fetchurl}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "gnutar-1.21";
|
name = "gnutar-1.22";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mirror://gnu/tar/tar-1.21.tar.bz2;
|
url = "mirror://gnu/tar/${name}.tar.bz2";
|
||||||
sha256 = "0l5kmq3s6rbps6h62li5a1yycchaa2mnhv8b8qlak90w0z970v6w";
|
sha256 = "0kdaadflxa6wznbbrp0xlxk9926hrr4yg7wr6m98ygvs35zvdvrw";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [./implausible.patch];
|
patches = [./implausible.patch];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://www.gnu.org/software/grep/;
|
homepage = http://www.gnu.org/software/tar/;
|
||||||
description = "GNU implementation of the tar archiver";
|
description = "GNU implementation of the `tar' archiver";
|
||||||
|
|
||||||
|
longDescription = ''
|
||||||
|
The Tar program provides the ability to create tar archives, as
|
||||||
|
well as various other kinds of manipulation. For example, you
|
||||||
|
can use Tar on previously created archives to extract files, to
|
||||||
|
store additional files, or to update or list files which were
|
||||||
|
already stored.
|
||||||
|
|
||||||
|
Initially, tar archives were used to store files conveniently on
|
||||||
|
magnetic tape. The name "Tar" comes from this use; it stands
|
||||||
|
for tape archiver. Despite the utility's name, Tar can direct
|
||||||
|
its output to available devices, files, or other programs (using
|
||||||
|
pipes), it can even access remote devices or files (as
|
||||||
|
archives).
|
||||||
|
'';
|
||||||
|
|
||||||
|
license = "GPLv3+";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue