mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-16 09:54:52 +00:00
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.
42 lines
1.2 KiB
Nix
42 lines
1.2 KiB
Nix
{ lib, stdenv, fetchzip, makeWrapper, unzip, jre, wrapGAppsHook3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "yEd";
|
|
version = "3.24";
|
|
|
|
src = fetchzip {
|
|
url = "https://www.yworks.com/resources/yed/demo/${pname}-${version}.zip";
|
|
sha256 = "sha256-4aotsOippuKUucweWERtqm/5pz2gwW1Sue48KPisQ0I=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper unzip wrapGAppsHook3 ];
|
|
# For wrapGAppsHook3 setup hook
|
|
buildInputs = [ (jre.gtk3 or null) ];
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
dontInstall = true;
|
|
|
|
preFixup = ''
|
|
mkdir -p $out/yed
|
|
cp -r * $out/yed
|
|
mkdir -p $out/bin
|
|
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
makeWrapper ${jre}/bin/java $out/bin/yed \
|
|
''${makeWrapperArgs[@]} \
|
|
--add-flags "-jar $out/yed/yed.jar --"
|
|
'';
|
|
dontWrapGApps = true;
|
|
|
|
meta = with lib; {
|
|
license = licenses.unfree;
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
homepage = "https://www.yworks.com/products/yed";
|
|
description = "Powerful desktop application that can be used to quickly and effectively generate high-quality diagrams";
|
|
platforms = jre.meta.platforms;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
mainProgram = "yed";
|
|
};
|
|
}
|