2014-10-09 17:48:23 +01:00
|
|
|
{stdenv, fetchurl, perl, bash}:
|
2012-08-05 22:49:37 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2013-07-13 20:40:19 +01:00
|
|
|
name = "atool-0.39.0";
|
2012-08-05 22:49:37 +01:00
|
|
|
src = fetchurl {
|
2013-07-14 03:23:06 +01:00
|
|
|
url = mirror://savannah/atool/atool-0.39.0.tar.gz;
|
2012-08-05 22:49:37 +01:00
|
|
|
sha256 = "aaf60095884abb872e25f8e919a8a63d0dabaeca46faeba87d12812d6efc703b";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ perl ];
|
2014-10-09 17:48:23 +01:00
|
|
|
configureScript = "${bash}/bin/bash configure";
|
2012-08-05 22:49:37 +01:00
|
|
|
|
|
|
|
meta = {
|
2018-12-01 17:32:32 +00:00
|
|
|
homepage = https://www.nongnu.org/atool;
|
2012-08-05 22:49:37 +01:00
|
|
|
description = "Archive command line helper";
|
2016-08-02 22:55:42 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2018-07-22 16:27:11 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
2012-08-05 22:49:37 +01:00
|
|
|
};
|
|
|
|
}
|