mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
mangojuice: init at 0.7.8 (#354321)
This commit is contained in:
parent
a51505e088
commit
1331edaea7
76
pkgs/by-name/ma/mangojuice/package.nix
Normal file
76
pkgs/by-name/ma/mangojuice/package.nix
Normal file
@ -0,0 +1,76 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
meson,
|
||||
ninja,
|
||||
vala,
|
||||
pkg-config,
|
||||
makeBinaryWrapper,
|
||||
|
||||
gtk4,
|
||||
libadwaita,
|
||||
glib,
|
||||
libgee,
|
||||
|
||||
mangohud,
|
||||
mesa-demos,
|
||||
vulkan-tools,
|
||||
|
||||
nix-update-script,
|
||||
}:
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "mangojuice";
|
||||
version = "0.7.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "radiolamp";
|
||||
repo = "mangojuice";
|
||||
rev = "refs/tags/${finalAttrs.version}";
|
||||
hash = "sha256-EWpXikyO7N2NjONqnTx8+9w16Pt5ne7qX67bYirShjc=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
ninja
|
||||
glib # For glib-compile-schemas
|
||||
vala
|
||||
pkg-config
|
||||
makeBinaryWrapper
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
gtk4
|
||||
libadwaita
|
||||
glib
|
||||
libgee
|
||||
];
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
postFixup =
|
||||
let
|
||||
path = lib.makeBinPath [
|
||||
mangohud
|
||||
mesa-demos
|
||||
vulkan-tools
|
||||
];
|
||||
in
|
||||
''
|
||||
wrapProgram $out/bin/mangojuice \
|
||||
--prefix PATH : ${path}
|
||||
'';
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
description = "Convenient alternative to GOverlay for setting up MangoHud";
|
||||
homepage = "https://github.com/radiolamp/mangojuice";
|
||||
license = with lib.licenses; [ gpl3Only ];
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = with lib.maintainers; [
|
||||
pluiedev
|
||||
getchoo
|
||||
];
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user