about summary refs log tree commit diff
path: root/pkgs/tools/compression/dtrx/default.nix
blob: 343709dd95714acc7f6bb420e4744042d1008803 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchurl, pythonPackages}:

pythonPackages.buildPythonPackage rec {
  name = "dtrx-${version}";
  version = "7.1";

  src = fetchurl {
    url = "http://brettcsmith.org/2007/dtrx/dtrx-${version}.tar.gz";
    sha1 = "05cfe705a04a8b84571b0a5647cd2648720791a4";
  };

  meta = with stdenv.lib; {
    description = "Do The Right Extraction: A tool for taking the hassle out of extracting archives";
    homepage = "http://brettcsmith.org/2007/dtrx/";
    license = licenses.gpl3Plus;
    maintainers = [ maintainers.spwhitt ];
    platforms = platforms.all;
  };
}