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

derivation {
  name = "gnutar-1.13.25";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
    url = ftp://alpha.gnu.org/gnu/tar/tar-1.13.25.tar.gz;
    md5 = "6ef8c906e81eee441f8335652670ac4a";
  };
  inherit stdenv;
}