xdiskusage: init at 1.60

This commit is contained in:
Anders Bo Rasmussen 2023-08-07 23:06:46 +02:00 committed by Anderson Torres
parent bd09401dfa
commit c6901916a9
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ 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;
};
})

View file

@ -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 { };