about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/agedu/default.nix
blob: d0254e9ce9f58774b640e45a6111d3977a915ac3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{stdenv, fetchgit, autoreconfHook, halibut}:
let
  date = "20180918";
  rev = "80c7beb";
in
stdenv.mkDerivation {
  name = "agedu-${date}.${rev}";
  # upstream provides tarballs but it seems they disappear after the next version is released
  src = fetchgit {
    url = https://git.tartarus.org/simon/agedu.git;
    inherit rev;
    sha256 = "0i930izna3s73p2q52qa377ixd14zij5q1n7w3irl7csyy78g0cd";
  };

  nativeBuildInputs = [autoreconfHook halibut];

  meta = with stdenv.lib; {
    description = "A Unix utility for tracking down wasted disk space";
    longDescription = ''
       Most Unix file systems, in their default mode, helpfully record when a
       file was last accessed. So if you generated a large amount of data years
       ago, forgot to clean it up, and have never used it since, then it ought
       in principle to be possible to use those last-access time stamps to tell
       the difference between that and a large amount of data you're still
       using regularly.

       agedu uses this information to tell you which files waste disk space when
       you haven't used them since a long time.
    '';
    homepage = https://www.chiark.greenend.org.uk/~sgtatham/agedu/;
    license = licenses.mit;
    maintainers = with maintainers; [ symphorien ];
    platforms = platforms.linux;
  };
}