2018-01-16 20:56:54 +03:00
|
|
|
{ stdenv, fetchFromGitHub, makeWrapper, parallel, sqlite, bc, file }:
|
2015-03-22 18:06:54 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-03-15 12:09:41 +03:00
|
|
|
version = "2.37";
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "profile-cleaner";
|
2015-03-22 18:06:54 +03:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "graysky2";
|
|
|
|
repo = "profile-cleaner";
|
|
|
|
rev = "v${version}";
|
2018-03-15 12:09:41 +03:00
|
|
|
sha256 = "1fbsn2xvcjkqhhkhidn04iwc0zha68cpkyc9vs5yly38qr1q238a";
|
2015-03-22 18:06:54 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
PREFIX=\"\" DESTDIR=$out make install
|
|
|
|
wrapProgram $out/bin/profile-cleaner \
|
2018-01-16 20:56:54 +03:00
|
|
|
--prefix PATH : "${stdenv.lib.makeBinPath [ parallel sqlite bc file ]}"
|
2015-03-22 18:06:54 +03: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 04:11:51 +03:00
|
|
|
homepage = "https://github.com/graysky2/profile-cleaner";
|
2015-03-22 18:06:54 +03:00
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.devhell ];
|
|
|
|
};
|
|
|
|
}
|