4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
27 lines
720 B
Nix
27 lines
720 B
Nix
{ lib, 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";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ gtk2 libxml2 intltool gettext ];
|
|
|
|
patches = [ ./get_sensitive.patch ./set_flags.patch ];
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
NIX_LDFLAGS = "-lm";
|
|
|
|
meta = with lib; {
|
|
homepage = "http://gdmap.sourceforge.net";
|
|
description = "Recursive rectangle map of disk usage";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|