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

37 lines
831 B
Nix
Raw Normal View History

2018-12-23 13:41:09 -08:00
{ stdenv, fetchFromGitHub
, gettext, pkgconfig, scons
, glib, json-glib, libelf, sphinx, utillinux }:
2015-01-25 16:08:05 -08:00
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "rmlint";
version = "2.9.0";
src = fetchFromGitHub {
owner = "sahib";
repo = "rmlint";
rev = "v${version}";
sha256 = "1b5cziam14h80xrfb285fmfrzz2rligxcpsq1xsig14xf4l2875i";
};
2018-12-23 13:41:09 -08:00
CFLAGS="-I${stdenv.lib.getDev utillinux}/include";
2015-01-25 16:08:05 -08:00
2018-12-23 13:41:09 -08:00
nativeBuildInputs = [
pkgconfig sphinx gettext scons
];
2015-01-25 16:08:05 -08:00
2018-12-23 13:41:09 -08:00
buildInputs = [
glib json-glib libelf utillinux
];
2015-01-25 16:08:05 -08:00
prefixKey = "--prefix=";
meta = {
2015-04-28 01:54:58 -07:00
description = "Extremely fast tool to remove duplicates and other lint from your filesystem";
homepage = "https://rmlint.readthedocs.org";
2015-01-25 16:08:05 -08:00
platforms = platforms.linux;
license = licenses.gpl3;
maintainers = [ maintainers.koral ];
};
}