mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
122 lines
2.7 KiB
Nix
122 lines
2.7 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
dpkg,
|
|
autoPatchelfHook,
|
|
zlib,
|
|
libgcc,
|
|
fontconfig,
|
|
libX11,
|
|
lttng-ust,
|
|
icu,
|
|
libICE,
|
|
libSM,
|
|
libXcursor,
|
|
openssl,
|
|
imagemagick,
|
|
makeWrapper,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "lunacy";
|
|
version = "9.6.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://lcdn.icons8.com/setup/Lunacy_${finalAttrs.version}.deb";
|
|
hash = "sha256-iTne+vUnv+O/+QUKgSUr+ACdZpXrvRQkZmqghJH1fDw=";
|
|
};
|
|
|
|
unpackCmd = ''
|
|
mkdir -p root
|
|
dpkg-deb -x $src root
|
|
'';
|
|
|
|
buildInputs = [
|
|
zlib
|
|
libgcc
|
|
stdenv.cc.cc
|
|
lttng-ust
|
|
fontconfig.lib
|
|
|
|
# Runtime deps
|
|
libICE
|
|
libSM
|
|
libX11
|
|
libXcursor
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
dpkg
|
|
autoPatchelfHook
|
|
makeWrapper
|
|
];
|
|
|
|
# adds to the RPATHS of all shared objects (exe and libs)
|
|
appendRunpaths =
|
|
map (pkg: (lib.getLib pkg) + "/lib") [
|
|
icu
|
|
openssl
|
|
stdenv.cc.libc
|
|
stdenv.cc.cc
|
|
]
|
|
++ [
|
|
# technically, this should be in runtimeDependencies but will not work as
|
|
# "lib" is appended to all elements in the array
|
|
"${placeholder "out"}/lib/lunacy"
|
|
];
|
|
|
|
# will add to the RPATH of executable only
|
|
runtimeDependencies = [
|
|
libICE
|
|
libSM
|
|
libX11
|
|
libXcursor
|
|
];
|
|
|
|
dontBuild = true;
|
|
dontStrip = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p "$out/lib";
|
|
cp -R "opt/icons8/lunacy" "$out/lib"
|
|
cp -R "usr/share" "$out/share"
|
|
|
|
# Prepare the desktop icon, the upstream icon is 200x200 but the hicolor theme does not
|
|
# support this resolution. Nearest sizes are 192x192 and 256x256.
|
|
${imagemagick}/bin/convert "opt/icons8/lunacy/Assets/LunacyLogo.png" -resize 192x192 lunacy.png
|
|
install -D lunacy.png "$out/share/icons/hicolor/192x192/apps/lunacy.png"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
postInstall = ''
|
|
substituteInPlace $out/share/applications/lunacy.desktop \
|
|
--replace-fail "Exec=/opt/icons8/lunacy/Lunacy" "Exec=lunacy" \
|
|
--replace-fail "Icon=/opt/icons8/lunacy/Assets/LunacyLogo.png" "Icon=lunacy"
|
|
'';
|
|
|
|
postFixup = ''
|
|
mkdir $out/bin
|
|
|
|
# The wrapper is needed instead of a symlink to prevent a random "Unsupported file format" when running the app.
|
|
makeWrapper "$out/lib/lunacy/Lunacy" "$out/bin/lunacy"
|
|
'';
|
|
|
|
meta = {
|
|
description = "Free design software that keeps your flow with AI tools and built-in graphics";
|
|
homepage = "https://icons8.com/lunacy";
|
|
changelog = "https://lunacy.docs.icons8.com/release-notes/";
|
|
license = lib.licenses.unfree;
|
|
maintainers = with lib.maintainers; [
|
|
eliandoran
|
|
luftmensch-luftmensch
|
|
];
|
|
platforms = lib.platforms.linux;
|
|
sourceProvenance = [ lib.sourceTypes.binaryBytecode ];
|
|
mainProgram = "lunacy";
|
|
};
|
|
})
|