forked from mirrors/nixpkgs
80 lines
1.6 KiB
Nix
80 lines
1.6 KiB
Nix
{ lib
|
|
, buildDotnetModule
|
|
, fetchFromGitHub
|
|
, dotnetCorePackages
|
|
, glibc
|
|
, zlib
|
|
, libX11
|
|
, libICE
|
|
, libSM
|
|
, fontconfig
|
|
, gtk3
|
|
, copyDesktopItems
|
|
, graphicsmagick
|
|
, wrapGAppsHook
|
|
, makeDesktopItem
|
|
}:
|
|
|
|
buildDotnetModule rec {
|
|
pname = "scarab";
|
|
version = "1.19.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fifty-six";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "10pmzy7nhcam0686kpn64cgar59shzzy5k7j3vrgmnm27zgkr22v";
|
|
};
|
|
|
|
nugetDeps = ./deps.nix;
|
|
projectFile = "Scarab.sln";
|
|
executables = [ "Scarab" ];
|
|
|
|
runtimeDeps = [
|
|
glibc
|
|
zlib
|
|
libX11
|
|
libICE
|
|
libSM
|
|
fontconfig
|
|
gtk3
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
copyDesktopItems
|
|
graphicsmagick
|
|
wrapGAppsHook
|
|
];
|
|
|
|
postFixup = ''
|
|
# Icon for the desktop file
|
|
mkdir -p $out/share/icons/hicolor/256x256/apps/
|
|
gm convert $src/Scarab/Assets/omegamaggotprime.ico $out/share/icons/hicolor/256x256/apps/scarab.png
|
|
'';
|
|
|
|
desktopItems = [(makeDesktopItem {
|
|
desktopName = "Scarab";
|
|
name = "scarab";
|
|
exec = "Scarab";
|
|
icon = "scarab";
|
|
comment = meta.description;
|
|
type = "Application";
|
|
categories = [ "Game" ];
|
|
})];
|
|
|
|
meta = with lib; {
|
|
description = "Hollow Knight mod installer and manager";
|
|
homepage = "https://github.com/fifty-six/Scarab";
|
|
downloadPage = "https://github.com/fifty-six/Scarab/releases";
|
|
changelog = "https://github.com/fifty-six/Scarab/releases/tag/v${version}";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ huantian ];
|
|
mainProgram = "Scarab";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|