forked from mirrors/nixpkgs
Add rmlint, a tool for removing duplicate files
This commit is contained in:
parent
75579b0ce3
commit
6e6181bc89
19
pkgs/tools/misc/rmlint/default.nix
Normal file
19
pkgs/tools/misc/rmlint/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ fetchurl, stdenv, glibc }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "rmlint-1.0.8";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/downloads/sahib/rmlint/rmlint_1.0.8.tar.gz";
|
||||
sha256 = "bea39a5872b39d3596e756f242967bc5bde6febeb996fdcd63fbcf5bfdc75f01";
|
||||
};
|
||||
|
||||
makeFlags="DESTDIR=$(out)";
|
||||
|
||||
meta = {
|
||||
description = "A tool to remove duplicates and other lint";
|
||||
homepage = "https://github.com/sahib/rmlint";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
};
|
||||
}
|
|
@ -1559,6 +1559,8 @@ let
|
|||
|
||||
ripmime = callPackage ../tools/networking/ripmime {};
|
||||
|
||||
rmlint = callPackage ../tools/misc/rmlint {};
|
||||
|
||||
rng_tools = callPackage ../tools/security/rng-tools { };
|
||||
|
||||
rsnapshot = callPackage ../tools/backup/rsnapshot {
|
||||
|
|
Loading…
Reference in a new issue