summary refs log tree commit diff
path: root/pkgs/tools/archivers/s-tar/default.nix
blob: 30ff2bc36a25e1a67dcade658d9a3e04b10750ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  pname = "s-tar";
  version = "1.6";
  src = fetchurl {
    url = "mirror://sourceforge/s-tar/star-${version}.tar.bz2";
    sha256 = "0xpp8gf0ghwdgncdwx17fpadxislwrj48gcm42851hz6p8p6c60v";
  };

  preConfigure = "rm configure";
  preBuild = "sed 's_/bin/__g' -i RULES/*";
  makeFlags = [ "GMAKE_NOWARN=true" ];
  installFlags = [ "DESTDIR=$(out)" "INS_BASE=/" ];
  postInstall = ''
    find $out/bin -type l -delete
    rm -r $out/etc $out/include $out/sbin
  '';

  meta = {
    description = "A very fast tar like tape archiver with improved functionality";
    longDescription = ''
      Star archives and extracts multiple files to and from a single file called a tarfile.
      A tarfile is usually a magnetic tape, but it can be any file.
      In all cases, appearance of a directory name refers to the files and (recursively) sub-directories of that directory.
      Star's actions are controlled by the mandatory command flags from the list below.
      The way star acts may be modified by additional options.
      Note that unpacking tar archives may be a security risk because star may overwrite existing files.
    '';
    homepage = "http://cdrtools.sourceforge.net/private/star.html";
    license = stdenv.lib.licenses.cddl;
    maintainers = [ stdenv.lib.maintainers.wucke13 ];
    platforms = [ "x86_64-linux" ];
  };
}