nixpkgs/pkgs/tools/misc/xdiskusage/default.nix

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

23 lines
648 B
Nix
Raw Normal View History

2023-08-07 23:06:46 +02:00
{ 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;
2023-11-27 02:17:53 +01:00
mainProgram = "xdiskusage";
2023-08-07 23:06:46 +02:00
};
})