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

89 lines
1.9 KiB
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv
, cairo
, fetchFromGitHub
, gettext
, glib
, gobject-introspection
, gtksourceview3
, json-glib
, libelf
, makeWrapper
, pango
2021-01-17 03:51:22 +00:00
, pkg-config
, polkit
, python3
, scons
, sphinx
2020-11-24 15:29:28 +00:00
, util-linux
, wrapGAppsHook
, withGui ? false }:
assert withGui -> !stdenv.isDarwin;
2021-01-15 09:19:50 +00:00
with lib;
stdenv.mkDerivation rec {
pname = "rmlint";
2020-06-15 02:42:48 +00:00
version = "2.10.1";
src = fetchFromGitHub {
owner = "sahib";
repo = "rmlint";
rev = "v${version}";
2020-06-15 02:42:48 +00:00
sha256 = "15xfkcw1bkfyf3z8kl23k3rlv702m0h7ghqxvhniynvlwbgh6j2x";
};
2018-12-23 21:41:09 +00:00
nativeBuildInputs = [
2021-01-17 03:51:22 +00:00
pkg-config
sphinx
scons
2021-01-15 09:19:50 +00:00
] ++ lib.optionals withGui [
makeWrapper
wrapGAppsHook
];
2015-01-26 00:08:05 +00:00
2018-12-23 21:41:09 +00:00
buildInputs = [
glib
json-glib
libelf
2020-11-24 15:29:28 +00:00
util-linux
2021-01-15 09:19:50 +00:00
] ++ lib.optionals withGui [
cairo
gobject-introspection
gtksourceview3
pango
polkit
python3
python3.pkgs.pygobject3
2018-12-23 21:41:09 +00:00
];
2015-01-26 00:08:05 +00:00
prePatch = ''
export CFLAGS="$NIX_CFLAGS_COMPILE"
export LDFLAGS="''${NIX_LDFLAGS//-rpath /-Wl,-rpath=}"
# 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 "
'';
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 09:19:50 +00:00
postInstall = lib.optionalString withGui ''
gappsWrapperArgs+=(--prefix PATH : "$out/bin")
gappsWrapperArgs+=(--prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${python3.pkgs.pygobject3}):$(toPythonPath ${python3.pkgs.pycairo})")
'';
meta = {
2015-04-28 08:54:58 +00: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 00:08:05 +00:00
license = licenses.gpl3;
maintainers = with maintainers; [ aaschmid koral ];
};
}