fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{lib, stdenv, fetchurl, perl, bash}:
2
3stdenv.mkDerivation rec {
4 pname = "atool";
5 version = "0.39.0";
6
7 src = fetchurl {
8 url = "mirror://savannah/atool/atool-${version}.tar.gz";
9 sha256 = "aaf60095884abb872e25f8e919a8a63d0dabaeca46faeba87d12812d6efc703b";
10 };
11
12 buildInputs = [ perl ];
13 configureScript = "${bash}/bin/bash configure";
14
15 meta = {
16 homepage = "https://www.nongnu.org/atool";
17 description = "Archive command line helper";
18 platforms = lib.platforms.unix;
19 license = lib.licenses.gpl3;
20 };
21}