Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / version-management / git-annex-utils / default.nix
blob2b63192ea3b08a2c1529caed024674085ff39e1c
1 { lib, stdenv, fetchgit, autoconf, automake, libtool, gmp }:
3 stdenv.mkDerivation rec {
4   pname = "git-annex-utils";
5   version = "0.04-3-g531bb33";
6   src = fetchgit {
7     url = "http://git.mysteryvortex.com/repositories/git-annex-utils.git";
8     rev = "531bb33";
9     sha256 = "1sv7s2ykc840cjwbfn7ayy743643x9i1lvk4cd55w9l052xvzj65";
10   };
11   nativeBuildInputs = [ autoconf automake ];
12   buildInputs = [ libtool gmp ];
13   preConfigure = "./autogen.sh";
15   meta = {
16     description = "gadu, a du like utility for annexed files";
17     longDescription = ''
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.
20     '';
21     homepage = "https://git-annex.mysteryvortex.com/git-annex-utils.html";
22     license = lib.licenses.gpl3;
23     maintainers = with lib.maintainers; [ woffs ];
24     mainProgram = "gadu";
25     platforms = lib.platforms.all;
26   };