571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
56 lines
1.4 KiB
Nix
56 lines
1.4 KiB
Nix
{ lib, stdenv, fetchurl, unzip, jre, makeDesktopItem, copyDesktopItems }:
|
|
|
|
let
|
|
desktopItem = makeDesktopItem {
|
|
desktopName = "JDiskReport";
|
|
genericName = "A graphical utility to visualize disk usage";
|
|
categories = [ "Utility" ];
|
|
exec = "jdiskreport";
|
|
name = "jdiskreport";
|
|
};
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "jdiskreport";
|
|
version = "1.4.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.jgoodies.com/download/jdiskreport/jdiskreport-${lib.replaceStrings ["."] ["_"] version}.zip";
|
|
sha256 = "0d5mzkwsbh9s9b1vyvpaawqc09b0q41l2a7pmwf7386b1fsx6d58";
|
|
};
|
|
|
|
nativeBuildInputs = [ copyDesktopItems unzip ];
|
|
inherit jre;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
unzip $src
|
|
|
|
jar=$(ls */*.jar)
|
|
|
|
mkdir -p $out/share/java
|
|
mv $jar $out/share/java
|
|
|
|
mkdir -p $out/bin
|
|
cat > $out/bin/jdiskreport <<EOF
|
|
#! $SHELL -e
|
|
exec $jre/bin/java -jar $out/share/java/$(basename $jar)
|
|
EOF
|
|
chmod +x $out/bin/jdiskreport
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
desktopItems = [ desktopItem ];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.jgoodies.com/freeware/jdiskreport/";
|
|
description = "Graphical utility to visualize disk usage";
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
license = licenses.unfreeRedistributable; #TODO freedist, libs under BSD-3
|
|
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
|
maintainers = with maintainers; [ kylesferrazza ];
|
|
mainProgram = "jdiskreport";
|
|
};
|
|
}
|