Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 27 lines 657 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5 fltk, 6}: 7 8stdenv.mkDerivation (finalAttrs: { 9 pname = "xdiskusage"; 10 version = "1.60"; 11 12 src = fetchurl { 13 url = "https://xdiskusage.sourceforge.net/xdiskusage-${finalAttrs.version}.tgz"; 14 hash = "sha256-e1NtxvG9xtm+x8KblDXCPZ0yv/ig6+4muZZrJz3J9n4="; 15 }; 16 17 nativeBuildInputs = [ fltk ]; 18 19 meta = { 20 description = "Program to show you what is using up all your disk space"; 21 homepage = "https://xdiskusage.sourceforge.net/"; 22 license = with lib.licenses; [ gpl2Plus ]; 23 maintainers = with lib.maintainers; [ fuzzdk ]; 24 platforms = with lib.platforms; linux; 25 mainProgram = "xdiskusage"; 26 }; 27})