libation: 12.5.4 -> 12.7.3 (#465141)

This commit is contained in:
Sandro
2025-12-08 18:28:01 +00:00
committed by GitHub
2 changed files with 345 additions and 424 deletions
+337 -417
View File
File diff suppressed because it is too large Load Diff
+8 -7
View File
@@ -13,20 +13,20 @@
buildDotnetModule rec {
pname = "libation";
version = "12.5.4";
version = "12.7.3";
src = fetchFromGitHub {
owner = "rmcrackan";
repo = "Libation";
tag = "v${version}";
hash = "sha256-W2wCtXcvft450A2cdLPbOFjHrQahSbTEbfyoSXUtH/E=";
hash = "sha256-MFrtEFgM584SGbcQNQLTlj4BBh2ct2rpQyx0/se8Eo0=";
};
sourceRoot = "${src.name}/Source";
dotnet-sdk = dotnetCorePackages.sdk_9_0;
dotnet-sdk = dotnetCorePackages.sdk_10_0;
dotnet-runtime = dotnetCorePackages.runtime_9_0;
dotnet-runtime = dotnetCorePackages.runtime_10_0;
nugetDeps = ./deps.json;
@@ -57,8 +57,6 @@ buildDotnetModule rec {
postInstall = ''
install -Dm644 LoadByOS/LinuxConfigApp/libation_glass.svg $out/share/icons/hicolor/scalable/apps/libation.svg
install -Dm644 LoadByOS/LinuxConfigApp/Libation.desktop $out/share/applications/libation.desktop
substituteInPlace $out/share/applications/libation.desktop \
--replace-fail "/usr/bin/libation" "libation"
'';
# wrap manually, because we need lower case executables
@@ -78,6 +76,9 @@ buildDotnetModule rec {
homepage = "https://github.com/rmcrackan/Libation";
license = lib.licenses.gpl3Plus;
mainProgram = "libation";
maintainers = with lib.maintainers; [ tomasajt ];
maintainers = with lib.maintainers; [
tomasajt
tebriel
];
};
}