nixpkgs/pkgs/tools/misc/rmlint/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

92 lines
2 KiB
Nix
Raw Normal View History

2021-01-15 10:19:50 +01:00
{ lib, stdenv
, cairo
, elfutils
, fetchFromGitHub
, glib
, gobject-introspection
, gtksourceview3
, json-glib
, makeWrapper
, pango
2021-01-17 04:51:22 +01:00
, pkg-config
, polkit
, python3
, scons
, sphinx
2020-11-24 16:29:28 +01:00
, util-linux
, wrapGAppsHook
, withGui ? false }:
assert withGui -> !stdenv.isDarwin;
stdenv.mkDerivation rec {
pname = "rmlint";
2023-08-13 15:01:13 +02:00
version = "2.10.2";
src = fetchFromGitHub {
owner = "sahib";
repo = "rmlint";
rev = "v${version}";
2023-08-13 15:01:13 +02:00
sha256 = "sha256-pOo1YfeqHUU6xyBRFbcj2lX1MHJ+a5Hi31BMC1nYZGo=";
};
patches = [
# pass through NIX_* environment variables to scons.
./scons-nix-env.patch
];
2018-12-23 22:41:09 +01:00
nativeBuildInputs = [
2021-01-17 04:51:22 +01:00
pkg-config
sphinx
scons
2021-01-15 10:19:50 +01:00
] ++ lib.optionals withGui [
makeWrapper
wrapGAppsHook
gobject-introspection
];
2015-01-26 01:08:05 +01:00
2018-12-23 22:41:09 +01:00
buildInputs = [
glib
json-glib
2020-11-24 16:29:28 +01:00
util-linux
2021-01-15 10:19:50 +01:00
] ++ lib.optionals withGui [
cairo
gtksourceview3
pango
polkit
python3
python3.pkgs.pygobject3
] ++ lib.optionals (lib.meta.availableOn stdenv.hostPlatform elfutils) [
elfutils
2018-12-23 22:41:09 +01:00
];
2015-01-26 01:08:05 +01:00
prePatch = ''
# remove sources of nondeterminism
substituteInPlace lib/cmdline.c \
--replace "__DATE__" "\"Jan 1 1970\"" \
--replace "__TIME__" "\"00:00:00\""
substituteInPlace docs/SConscript \
--replace "gzip -c " "gzip -cn "
'';
# Otherwise tries to access /usr.
prefixKey = "--prefix=";
sconsFlags = lib.optionals (!withGui) [ "--without-gui" ];
# in GUI mode, this shells out to itself, and tries to import python modules
2021-01-15 10:19:50 +01:00
postInstall = lib.optionalString withGui ''
gappsWrapperArgs+=(--prefix PATH : "$out/bin")
gappsWrapperArgs+=(--prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${python3.pkgs.pygobject3}):$(toPythonPath ${python3.pkgs.pycairo})")
'';
meta = with lib; {
2015-04-28 10:54:58 +02:00
description = "Extremely fast tool to remove duplicates and other lint from your filesystem";
homepage = "https://rmlint.readthedocs.org";
platforms = platforms.unix;
2015-01-26 01:08:05 +01:00
license = licenses.gpl3;
maintainers = with maintainers; [ aaschmid koral ];
2023-11-27 02:17:53 +01:00
mainProgram = "rmlint";
};
}