2021-01-15 10:19:50 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, makeWrapper, parallel, sqlite, bc, file }:
|
2015-03-22 16:06:54 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-07-30 20:57:59 +02:00
|
|
|
version = "2.42";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "profile-cleaner";
|
2015-03-22 16:06:54 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "graysky2";
|
|
|
|
repo = "profile-cleaner";
|
|
|
|
rev = "v${version}";
|
2021-07-30 20:57:59 +02:00
|
|
|
sha256 = "1d94lp91i4y896vyc7fc3ysha700cwzsdjmmmwlm6h2zp652c73y";
|
2015-03-22 16:06:54 +01:00
|
|
|
};
|
|
|
|
|
2021-02-07 10:17:39 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2015-03-22 16:06:54 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
PREFIX=\"\" DESTDIR=$out make install
|
|
|
|
wrapProgram $out/bin/profile-cleaner \
|
2021-01-15 10:19:50 +01:00
|
|
|
--prefix PATH : "${lib.makeBinPath [ parallel sqlite bc file ]}"
|
2015-03-22 16:06:54 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Reduces browser profile sizes by cleaning their sqlite databases";
|
|
|
|
longDescription = ''
|
|
|
|
Use profile-cleaner to reduce the size of browser profiles by organizing
|
|
|
|
their sqlite databases using sqlite3's vacuum and reindex functions. The
|
|
|
|
term "browser" is used loosely since profile-cleaner happily works on
|
|
|
|
some email clients and newsreaders too.
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/graysky2/profile-cleaner";
|
2021-01-15 10:19:50 +01:00
|
|
|
license = lib.licenses.mit;
|
2021-03-22 09:56:00 +01:00
|
|
|
platforms = lib.platforms.all;
|
2021-01-15 10:19:50 +01:00
|
|
|
maintainers = [ lib.maintainers.devhell ];
|
2015-03-22 16:06:54 +01:00
|
|
|
};
|
|
|
|
}
|