1 { lib, stdenv, fetchgit, autoconf, automake, libtool, gmp }:
3 stdenv.mkDerivation rec {
4 pname = "git-annex-utils";
5 version = "0.04-3-g531bb33";
7 url = "http://git.mysteryvortex.com/repositories/git-annex-utils.git";
9 sha256 = "1sv7s2ykc840cjwbfn7ayy743643x9i1lvk4cd55w9l052xvzj65";
11 nativeBuildInputs = [ autoconf automake ];
12 buildInputs = [ libtool gmp ];
13 preConfigure = "./autogen.sh";
16 description = "gadu, a du like utility for annexed files";
18 This is a set of utilities that are handy to use with git-annex repositories.
19 Currently there is only one utility gadu, a du like utility for annexed files.
21 homepage = "https://git-annex.mysteryvortex.com/git-annex-utils.html";
22 license = lib.licenses.gpl3;
23 maintainers = with lib.maintainers; [ woffs ];
25 platforms = lib.platforms.all;