ab71280823
mate.mate-desktop: https://hydra.nixos.org/build/61110037 gdmap: https://hydra.nixos.org/build/61144743 redsocks: https://hydra.nixos.org/build/61123106 resolv_wrapper: https://hydra.nixos.org/build/61121132 ogmtools: https://hydra.nixos.org/build/61108726 mp3info: https://hydra.nixos.org/build/61139015 lxappearance-gtk3: https://hydra.nixos.org/build/61126327 hdf5-fortran: https://hydra.nixos.org/build/61146631 pqiv: https://hydra.nixos.org/build/61124724
24 lines
669 B
Nix
24 lines
669 B
Nix
{ stdenv, fetchurl, gtk2, pkgconfig, libxml2, intltool, gettext }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gdmap-0.8.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/gdmap/${name}.tar.gz";
|
|
sha256 = "0nr8l88cg19zj585hczj8v73yh21k7j13xivhlzl8jdk0j0cj052";
|
|
};
|
|
|
|
buildInputs = [ gtk2 pkgconfig libxml2 intltool gettext ];
|
|
|
|
patches = [ ./get_sensitive.patch ./set_flags.patch ];
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://gdmap.sourceforge.net;
|
|
description = "Recursive rectangle map of disk usage";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|