2016-11-10 14:41:20 +00:00
|
|
|
{stdenv, lib, fetchurl, pythonPackages
|
|
|
|
, gnutar, unzip, lhasa, rpm, binutils, cpio, gzip, p7zip, cabextract, unrar, unshield
|
|
|
|
, bzip2, xz, lzip
|
|
|
|
# unzip is handled by p7zip
|
|
|
|
, unzipSupport ? false
|
|
|
|
, unrarSupport ? false }:
|
2015-01-06 19:33:53 +00:00
|
|
|
|
2016-11-10 14:41:20 +00:00
|
|
|
let
|
|
|
|
archivers = lib.makeBinPath ([ gnutar lhasa rpm binutils cpio gzip p7zip cabextract unshield ]
|
|
|
|
++ lib.optional (unzipSupport) unzip
|
|
|
|
++ lib.optional (unrarSupport) unrar
|
|
|
|
++ [ bzip2 xz lzip ]);
|
|
|
|
|
|
|
|
in pythonPackages.buildPythonApplication rec {
|
2015-01-06 19:33:53 +00:00
|
|
|
name = "dtrx-${version}";
|
|
|
|
version = "7.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://brettcsmith.org/2007/dtrx/dtrx-${version}.tar.gz";
|
2017-02-24 23:30:03 +00:00
|
|
|
sha256 = "15yf4n27zbhvv0byfv3i89wl5zn6jc2wbc69lk5a3m6rx54gx6hw";
|
2015-01-06 19:33:53 +00:00
|
|
|
};
|
|
|
|
|
2016-11-10 14:41:20 +00:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/bin/dtrx" --prefix PATH : "${archivers}"
|
|
|
|
'';
|
|
|
|
|
2015-01-06 19:33:53 +00:00
|
|
|
meta = with stdenv.lib; {
|
2015-04-28 08:54:58 +00:00
|
|
|
description = "Do The Right Extraction: A tool for taking the hassle out of extracting archives";
|
2017-08-02 21:50:51 +00:00
|
|
|
homepage = https://brettcsmith.org/2007/dtrx/;
|
2015-01-06 19:33:53 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = [ maintainers.spwhitt ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|