Commit c6901916 authored by Anders Bo Rasmussen's avatar Anders Bo Rasmussen Committed by Anderson Torres
Browse files

xdiskusage: init at 1.60

parent bd09401d
Loading
Loading
Loading
Loading
+21 −0
Original line number Diff line number Diff line
{ lib, stdenv, fetchurl, fltk }:

stdenv.mkDerivation (finalAttrs: {
  pname = "xdiskusage";
  version = "1.60";

  src = fetchurl {
    url = "https://xdiskusage.sourceforge.net/xdiskusage-${finalAttrs.version}.tgz";
    hash = "sha256-e1NtxvG9xtm+x8KblDXCPZ0yv/ig6+4muZZrJz3J9n4=";
  };

  nativeBuildInputs = [ fltk ];

  meta = {
    description = "Program to show you what is using up all your disk space";
    homepage = "https://xdiskusage.sourceforge.net/";
    license = with lib.licenses; [ gpl2Plus ];
    maintainers = with lib.maintainers; [ fuzzdk ];
    platforms = with lib.platforms; linux;
  };
})
+2 −0
Original line number Diff line number Diff line
@@ -25447,6 +25447,8 @@ with pkgs;
  xdo = callPackage ../tools/misc/xdo { };
  xdiskusage = callPackage ../tools/misc/xdiskusage { };
  xed = callPackage ../development/libraries/xed { };
  xedit = callPackage ../applications/editors/xedit { };