1{stdenv, fetchurl, perl, bash}:
2
3stdenv.mkDerivation rec {
4 name = "atool-0.39.0";
5 src = fetchurl {
6 url = mirror://savannah/atool/atool-0.39.0.tar.gz;
7 sha256 = "aaf60095884abb872e25f8e919a8a63d0dabaeca46faeba87d12812d6efc703b";
8 };
9
10 buildInputs = [ perl ];
11 configureScript = "${bash}/bin/bash configure";
12
13 meta = {
14 homepage = http://www.nongnu.org/atool;
15 description = "Archive command line helper";
16 hydraPlatforms = stdenv.lib.platforms.linux;
17 };
18}