mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 08:36:41 +01:00
commit
cc8e61cff1
2 changed files with 21 additions and 0 deletions
19
pkgs/tools/compression/dtrx/default.nix
Normal file
19
pkgs/tools/compression/dtrx/default.nix
Normal file
|
@ -0,0 +1,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;
|
||||
};
|
||||
}
|
|
@ -705,6 +705,8 @@ let
|
|||
|
||||
dlx = callPackage ../misc/emulators/dlx { };
|
||||
|
||||
dtrx = callPackage ../tools/compression/dtrx { };
|
||||
|
||||
duperemove = callPackage ../tools/filesystems/duperemove {
|
||||
linuxHeaders = linuxHeaders_3_14;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue