summary refs log tree commit diff
path: root/pkgs/tools/misc/rmlint/default.nix
blob: a1cf21aa64a16ec49e73fe62ec857777a6a6baee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ fetchurl, stdenv }:

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;
  };
}