2022-04-26 21:39:07 +01:00
|
|
|
{ lib, stdenv
|
|
|
|
, fetchgit
|
|
|
|
, cmake
|
|
|
|
, halibut
|
|
|
|
}:
|
2018-06-26 19:06:16 +01:00
|
|
|
let
|
2022-04-26 21:39:07 +01:00
|
|
|
date = "20211129";
|
|
|
|
rev = "8cd63c5";
|
2018-06-26 19:06:16 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2020-12-29 13:01:30 +00:00
|
|
|
pname = "agedu";
|
|
|
|
version = "${date}.${rev}";
|
|
|
|
|
2018-06-26 19:06:16 +01:00
|
|
|
# upstream provides tarballs but it seems they disappear after the next version is released
|
|
|
|
src = fetchgit {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://git.tartarus.org/simon/agedu.git";
|
2018-06-26 19:06:16 +01:00
|
|
|
inherit rev;
|
2022-04-26 21:39:07 +01:00
|
|
|
hash = "sha256-5wqpL7wrFwIf6lxVte+GXLsXYY0/36EIAUepVNDCnSE=";
|
2018-06-26 19:06:16 +01:00
|
|
|
};
|
|
|
|
|
2022-04-26 21:39:07 +01:00
|
|
|
nativeBuildInputs = [ cmake halibut ];
|
2018-06-26 19:06:16 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-06-26 19:06:16 +01:00
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.chiark.greenend.org.uk/~sgtatham/agedu/";
|
2018-06-26 19:06:16 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ symphorien ];
|
2021-03-04 07:47:19 +00:00
|
|
|
platforms = platforms.unix;
|
2018-06-26 19:06:16 +01:00
|
|
|
};
|
|
|
|
}
|