nixpkgs/pkgs/tools/misc/rmlint/default.nix
WilliButz 5073611082 rmlint: 2.4.4 -> 2.6.1
- version bump: 2.4.4 -> 2.6.1
- fetchurl -> fetchFromGitHub
- hompage: http -> https
2017-08-21 23:41:00 +02:00

32 lines
827 B
Nix

{ stdenv, fetchFromGitHub,
gettext, glib, json_glib, libelf, pkgconfig, scons, sphinx, utillinux }:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "rmlint-${version}";
version = "2.6.1";
src = fetchFromGitHub {
owner = "sahib";
repo = "rmlint";
rev = "v${version}";
sha256 = "1j09qk3zypw4my713q9g36kq37ggqd5v9vrs3h821p6p3qmmkdn8";
};
configurePhase = "scons config";
buildInputs = [ gettext glib json_glib libelf pkgconfig scons sphinx utillinux ];
buildPhase = "scons";
installPhase = "scons --prefix=$out install";
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 ];
};
}