nixpkgs/pkgs/tools/compression/dtrx/default.nix

46 lines
1.2 KiB
Nix
Raw Normal View History

2021-03-25 12:35:28 +01:00
{ lib, fetchurl, python2Packages
, gnutar, unzip, lhasa, rpm, binutils, cpio, gzip, p7zip, cabextract, unrar, unshield
2016-11-10 15:41:20 +01:00
, bzip2, xz, lzip
# unzip is handled by p7zip
, unzipSupport ? false
2016-11-10 15:41:20 +01:00
, unrarSupport ? false }:
2015-01-06 20:33:53 +01:00
2016-11-10 15:41:20 +01: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 ]);
2016-11-10 15:41:20 +01:00
2021-03-25 12:35:28 +01:00
in python2Packages.buildPythonApplication rec {
pname = "dtrx";
2015-01-06 20:33:53 +01:00
version = "7.1";
src = fetchurl {
url = "https://brettcsmith.org/2007/dtrx/dtrx-${version}.tar.gz";
2017-02-25 00:30:03 +01:00
sha256 = "15yf4n27zbhvv0byfv3i89wl5zn6jc2wbc69lk5a3m6rx54gx6hw";
2015-01-06 20:33:53 +01:00
};
2016-11-10 15:41:20 +01:00
postInstall = ''
wrapProgram "$out/bin/dtrx" --prefix PATH : "${archivers}"
'';
2021-03-25 12:35:28 +01:00
checkPhase = ''
python2 tests/compare.py
'';
checkInputs = with python2Packages; [
pyyaml
];
# custom test suite fails
doCheck = false;
meta = with lib; {
2015-04-28 10:54:58 +02:00
description = "Do The Right Extraction: A tool for taking the hassle out of extracting archives";
homepage = "https://brettcsmith.org/2007/dtrx/";
2015-01-06 20:33:53 +01:00
license = licenses.gpl3Plus;
maintainers = [ maintainers.spwhitt ];
platforms = platforms.all;
};
}