nixpkgs/pkgs/tools/system/gdmap/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
748 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, gtk2, pkg-config, libxml2, intltool, gettext }:
stdenv.mkDerivation rec {
pname = "gdmap";
version = "0.8.1";
2016-02-07 20:43:42 +00:00
src = fetchurl {
url = "mirror://sourceforge/gdmap/gdmap-${version}.tar.gz";
sha256 = "0nr8l88cg19zj585hczj8v73yh21k7j13xivhlzl8jdk0j0cj052";
};
nativeBuildInputs = [ pkg-config intltool ];
buildInputs = [ gtk2 libxml2 gettext ];
patches = [ ./get_sensitive.patch ./set_flags.patch ];
hardeningDisable = [ "format" ];
2016-02-07 20:43:42 +00:00
2019-10-30 01:29:30 +00:00
NIX_LDFLAGS = "-lm";
2019-01-04 19:33:50 +00:00
meta = with lib; {
homepage = "https://gdmap.sourceforge.net";
description = "Recursive rectangle map of disk usage";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
};
}