007f80c1d0
Should eval cleanly, as far as -A tarball tells me. Relevant: issue #2999, issue #739
23 lines
570 B
Nix
23 lines
570 B
Nix
{ stdenv, fetchurl, unzip, jre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "jdiskreport-1.4.1";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
url = http://www.jgoodies.com/download/jdiskreport/jdiskreport-1_4_1.zip;
|
|
sha256 = "0d5mzkwsbh9s9b1vyvpaawqc09b0q41l2a7pmwf7386b1fsx6d58";
|
|
};
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
inherit jre;
|
|
|
|
meta = {
|
|
homepage = http://www.jgoodies.com/freeware/jdiskreport/;
|
|
description = "A graphical utility to visualize disk usage";
|
|
license = stdenv.lib.licenses.unfreeRedistributable; #TODO freedist, libs under BSD-3
|
|
};
|
|
}
|