s-tar: init at 1.5.3 (#40771)

This commit is contained in:
wucke13 2018-05-28 11:56:35 +02:00 committed by xeji
parent 0e97d71126
commit 347cc5015c
3 changed files with 42 additions and 0 deletions

View file

@ -4141,6 +4141,11 @@
github = "wscott";
name = "Wayne Scott";
};
wucke13 = {
email = "info@wucke13.de";
github = "wucke13";
name = "Wucke";
};
wyvie = {
email = "elijahrum@gmail.com";
github = "wyvie";

View file

@ -0,0 +1,35 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "s-tar-${version}";
version = "1.5.3";
src = fetchurl {
url = "mirror://sourceforge/s-tar/star-${version}.tar.bz2";
sha256 = "0nsg3adv8lwqsbizicgmyxx8w26d1f4almprkcb08cd87s1l40q7";
};
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" ];
};
}

View file

@ -2146,6 +2146,8 @@ with pkgs;
mcrcon = callPackage ../tools/networking/mcrcon {};
s-tar = callPackages ../tools/archivers/s-tar {};
tealdeer = callPackage ../tools/misc/tealdeer/default.nix { };
uudeview = callPackage ../tools/misc/uudeview { };