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

22 lines
533 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{lib, stdenv, fetchurl, perl, bash}:
2012-08-05 21:49:37 +00:00
2021-08-12 19:47:47 +00:00
stdenv.mkDerivation rec {
pname = "atool";
version = "0.39.0";
2012-08-05 21:49:37 +00:00
src = fetchurl {
2021-08-12 19:47:47 +00:00
url = "mirror://savannah/atool/atool-${version}.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 = "https://www.nongnu.org/atool";
2012-08-05 21:49:37 +00:00
description = "Archive command line helper";
2021-01-15 09:19:50 +00:00
platforms = lib.platforms.unix;
license = lib.licenses.gpl3;
2012-08-05 21:49:37 +00:00
};
}