about summary refs log tree commit diff
path: root/pkgs/by-name/lu/lumafly/package.nix
blob: 14227990c49024b37f71e6b19dfc464a8e1b335a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
  lib,
  fetchFromGitHub,
  buildDotnetModule,
  dotnetCorePackages,
  zlib,
  icu,
  fontconfig,
  openssl,
  libX11,
  libICE,
  libSM,
  icoutils,
  copyDesktopItems,
  makeDesktopItem,
}:
buildDotnetModule rec {
  pname = "lumafly";
  version = "3.2.0.0";

  src = fetchFromGitHub {
    owner = "TheMulhima";
    repo = "lumafly";
    rev = "v${version}";
    hash = "sha256-oDSM5Ev9SCjbvCgDZcpzm2bVnzG04yy/WaSwJyh0b18=";
  };

  projectFile = "Lumafly/Lumafly.csproj";

  nugetDeps = ./deps.nix;

  dotnet-sdk = dotnetCorePackages.sdk_7_0;

  selfContainedBuild = true;

  runtimeDeps = [
    zlib
    icu
    fontconfig
    openssl
    libX11
    libICE
    libSM
  ];

  nativeBuildInputs = [
    icoutils
    copyDesktopItems
  ];

  postFixup = ''
    # Icon for the desktop file
    icotool -x $src/Lumafly/Assets/Lumafly.ico
    install -D Lumafly_1_32x32x32.png $out/share/icons/hicolor/32x32/apps/lumafly.png
  '';

  desktopItems = [(makeDesktopItem {
    desktopName = "Lumafly";
    name = "lumafly";
    exec = "Lumafly";
    icon = "lumafly";
    comment = meta.description;
    type = "Application";
    categories = [ "Game" ];
  })];

  meta = {
    description = "A cross platform mod manager for Hollow Knight written in Avalonia";
    homepage = "https://themulhima.github.io/Lumafly/";
    license = lib.licenses.gpl3Plus;
    mainProgram = "Lumafly";
    maintainers = with lib.maintainers; [ rohanssrao ];
    platforms = lib.platforms.linux;
  };
}