nixpkgs/pkgs/tools/misc/profile-cleaner/default.nix
Ryan Mulligan 511b7c0dcb profile-cleaner: 2.36 -> 2.37
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- ran `/nix/store/b8vjlszy2ksb98qnmyyc49p2yhinvcr1-profile-cleaner-2.37/bin/profile-cleaner -h` got 0 exit code
- ran `/nix/store/b8vjlszy2ksb98qnmyyc49p2yhinvcr1-profile-cleaner-2.37/bin/profile-cleaner --help` got 0 exit code
- ran `/nix/store/b8vjlszy2ksb98qnmyyc49p2yhinvcr1-profile-cleaner-2.37/bin/profile-cleaner help` got 0 exit code
- ran `/nix/store/b8vjlszy2ksb98qnmyyc49p2yhinvcr1-profile-cleaner-2.37/bin/profile-cleaner -V` and found version 2.37
- ran `/nix/store/b8vjlszy2ksb98qnmyyc49p2yhinvcr1-profile-cleaner-2.37/bin/profile-cleaner -v` and found version 2.37
- ran `/nix/store/b8vjlszy2ksb98qnmyyc49p2yhinvcr1-profile-cleaner-2.37/bin/profile-cleaner --version` and found version 2.37
- ran `/nix/store/b8vjlszy2ksb98qnmyyc49p2yhinvcr1-profile-cleaner-2.37/bin/profile-cleaner version` and found version 2.37
- ran `/nix/store/b8vjlszy2ksb98qnmyyc49p2yhinvcr1-profile-cleaner-2.37/bin/profile-cleaner -h` and found version 2.37
- ran `/nix/store/b8vjlszy2ksb98qnmyyc49p2yhinvcr1-profile-cleaner-2.37/bin/profile-cleaner --help` and found version 2.37
- ran `/nix/store/b8vjlszy2ksb98qnmyyc49p2yhinvcr1-profile-cleaner-2.37/bin/profile-cleaner help` and found version 2.37
- found 2.37 with grep in /nix/store/b8vjlszy2ksb98qnmyyc49p2yhinvcr1-profile-cleaner-2.37
- found 2.37 in filename of file in /nix/store/b8vjlszy2ksb98qnmyyc49p2yhinvcr1-profile-cleaner-2.37
2018-03-15 02:09:41 -07:00

36 lines
1.1 KiB
Nix

{ stdenv, fetchFromGitHub, makeWrapper, parallel, sqlite, bc, file }:
stdenv.mkDerivation rec {
version = "2.37";
name = "profile-cleaner-${version}";
src = fetchFromGitHub {
owner = "graysky2";
repo = "profile-cleaner";
rev = "v${version}";
sha256 = "1fbsn2xvcjkqhhkhidn04iwc0zha68cpkyc9vs5yly38qr1q238a";
};
buildInputs = [ makeWrapper ];
installPhase = ''
PREFIX=\"\" DESTDIR=$out make install
wrapProgram $out/bin/profile-cleaner \
--prefix PATH : "${stdenv.lib.makeBinPath [ parallel sqlite bc file ]}"
'';
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.
'';
homepage = https://github.com/graysky2/profile-cleaner;
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.devhell ];
};
}