Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 28 lines 573 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5 perl, 6 bash, 7}: 8 9stdenv.mkDerivation rec { 10 pname = "atool"; 11 version = "0.39.0"; 12 13 src = fetchurl { 14 url = "mirror://savannah/atool/atool-${version}.tar.gz"; 15 sha256 = "aaf60095884abb872e25f8e919a8a63d0dabaeca46faeba87d12812d6efc703b"; 16 }; 17 18 buildInputs = [ perl ]; 19 configureScript = "${bash}/bin/bash configure"; 20 21 meta = { 22 homepage = "https://www.nongnu.org/atool"; 23 description = "Archive command line helper"; 24 platforms = lib.platforms.unix; 25 license = lib.licenses.gpl3; 26 mainProgram = "atool"; 27 }; 28}