summary refs log tree commit diff
path: root/pkgs/tools/system/gdmap/default.nix
blob: 1456b6fca7c455e25cd5241c32bfcdf88a6c4f02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl, gtk, pkgconfig, libxml2, intltool, gettext }:

stdenv.mkDerivation rec {
  name = "gdmap-0.8.1";

  src = fetchurl {
    url = "mirror://sourceforge/gdmap/${name}.tar.gz";
    sha256 = "0nr8l88cg19zj585hczj8v73yh21k7j13xivhlzl8jdk0j0cj052";
  };

  buildInputs = [ gtk pkgconfig libxml2 intltool gettext ];

  patches = [ ./get_sensitive.patch ./set_flags.patch ];

  hardening_format = false;

  meta = with stdenv.lib; {
    homepage = http://gdmap.sourceforge.net;
    description = "Recursive rectangle map of disk usage";
    license = licenses.gpl2;
    platforms = platforms.all;
    maintainers = [ maintainers.bjornfor ];
  };
}