nixpkgs/pkgs/tools/archivers/atool/default.nix

19 lines
482 B
Nix
Raw Normal View History

{stdenv, fetchurl, perl, bash}:
2012-08-05 21:49:37 +00:00
stdenv.mkDerivation rec {
2013-07-13 19:40:19 +00:00
name = "atool-0.39.0";
2012-08-05 21:49:37 +00:00
src = fetchurl {
url = mirror://savannah/atool/atool-0.39.0.tar.gz;
2012-08-05 21:49:37 +00:00
sha256 = "aaf60095884abb872e25f8e919a8a63d0dabaeca46faeba87d12812d6efc703b";
};
buildInputs = [ perl ];
configureScript = "${bash}/bin/bash configure";
2012-08-05 21:49:37 +00:00
meta = {
homepage = http://www.nongnu.org/atool;
description = "Archive command line helper";
hydraPlatforms = stdenv.lib.platforms.linux;
2012-08-05 21:49:37 +00:00
};
}