mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
5abb31557d
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/rmlint/versions
37 lines
829 B
Nix
37 lines
829 B
Nix
{ stdenv, fetchFromGitHub
|
|
, gettext, pkgconfig, scons
|
|
, glib, json-glib, libelf, sphinx, utillinux }:
|
|
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
pname = "rmlint";
|
|
version = "2.9.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sahib";
|
|
repo = "rmlint";
|
|
rev = "v${version}";
|
|
sha256 = "1b5cziam14h80xrfb285fmfrzz2rligxcpsq1xsig14xf4l2875i";
|
|
};
|
|
|
|
CFLAGS="-I${stdenv.lib.getDev utillinux}/include";
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig sphinx gettext scons
|
|
];
|
|
|
|
buildInputs = [
|
|
glib json-glib libelf utillinux
|
|
];
|
|
|
|
prefixKey = "--prefix=";
|
|
|
|
meta = {
|
|
description = "Extremely fast tool to remove duplicates and other lint from your filesystem";
|
|
homepage = https://rmlint.readthedocs.org;
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl3;
|
|
maintainers = [ maintainers.koral ];
|
|
};
|
|
}
|