mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
57bccb3cb8
* treewide: http -> https sources This updates the source urls of all top-level packages from http to https where possible. * buildtorrent: fix url and tab -> spaces
35 lines
1.0 KiB
Nix
35 lines
1.0 KiB
Nix
{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 }:
|
|
|
|
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 {
|
|
name = "dtrx-${version}";
|
|
version = "7.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://brettcsmith.org/2007/dtrx/dtrx-${version}.tar.gz";
|
|
sha256 = "15yf4n27zbhvv0byfv3i89wl5zn6jc2wbc69lk5a3m6rx54gx6hw";
|
|
};
|
|
|
|
postInstall = ''
|
|
wrapProgram "$out/bin/dtrx" --prefix PATH : "${archivers}"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Do The Right Extraction: A tool for taking the hassle out of extracting archives";
|
|
homepage = https://brettcsmith.org/2007/dtrx/;
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ maintainers.spwhitt ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|