3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/graphics/goverlay/default.nix

113 lines
2.4 KiB
Nix
Raw Normal View History

2021-05-01 19:24:34 +01:00
{ lib
, writeScriptBin
, bash
, stdenv
, fetchFromGitHub
, fpc
, lazarus-qt
2021-09-07 19:31:08 +01:00
, wrapQtAppsHook
, libGL
, libGLU
2021-05-01 19:24:34 +01:00
, libqt5pas
2021-09-07 19:31:08 +01:00
, libX11
2021-05-01 19:24:34 +01:00
, coreutils
, git
, gnugrep
, libnotify
, polkit
, procps
, systemd
2021-10-28 01:16:20 +01:00
, util-linux
2021-05-01 19:24:34 +01:00
, vulkan-tools
, which
}:
let
# Finds data files using the XDG Base Directory Specification
# See https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
find-xdg-data-files = writeScriptBin "find-xdg-data-files" ''
#!${bash}/bin/sh
IFS=:
for xdg_data_dir in ''${XDG_DATA_HOME:-$HOME/.local/share}:''${XDG_DATA_DIRS:-/usr/local/share:/usr/share}; do
if [ -f "$xdg_data_dir/$1" ]; then
echo "$xdg_data_dir/$1"
fi
done
'';
in stdenv.mkDerivation rec {
pname = "goverlay";
2021-10-28 01:16:20 +01:00
version = "0.6.4";
2021-05-01 19:24:34 +01:00
src = fetchFromGitHub {
owner = "benjamimgois";
repo = pname;
rev = version;
2021-10-28 01:16:20 +01:00
sha256 = "sha256-xuv7u2lLQAB0Zmu7UHGXP/sJwcb8vHDf9hFL+pF+818=";
2021-05-01 19:24:34 +01:00
};
outputs = [ "out" "man" ];
patches = [
# Find MangoHud & vkBasalt Vulkan layers using the XDG Base Directory Specification
./find-xdg-data-files.patch
];
postPatch = ''
substituteInPlace Makefile \
--replace 'prefix = /usr/local' "prefix = $out"
substituteInPlace overlayunit.pas \
--replace '/usr/share/icons/hicolor/128x128/apps/goverlay.png' "$out/share/icons/hicolor/128x128/apps/goverlay.png"
'';
nativeBuildInputs = [
fpc
lazarus-qt
2021-09-07 19:31:08 +01:00
wrapQtAppsHook
2021-05-01 19:24:34 +01:00
];
buildInputs = [
2021-09-07 19:31:08 +01:00
libGL
libGLU
2021-05-01 19:24:34 +01:00
libqt5pas
2021-09-07 19:31:08 +01:00
libX11
2021-05-01 19:24:34 +01:00
];
2021-09-07 19:31:08 +01:00
NIX_LDFLAGS = "-lGLU -rpath ${lib.makeLibraryPath buildInputs}";
2021-05-01 19:24:34 +01:00
buildPhase = ''
runHook preBuild
HOME=$(mktemp -d) lazbuild --lazarusdir=${lazarus-qt}/share/lazarus -B goverlay.lpi
runHook postBuild
'';
qtWrapperArgs = [
"--prefix PATH : ${lib.makeBinPath [
bash
coreutils
find-xdg-data-files
git
gnugrep
libnotify
polkit
procps
systemd
2021-10-28 01:16:20 +01:00
util-linux.bin
2021-05-01 19:24:34 +01:00
vulkan-tools
which
]}"
# Force xcb since libqt5pas doesn't support Wayland
# See https://github.com/benjamimgois/goverlay/issues/107
"--set QT_QPA_PLATFORM xcb"
];
meta = with lib; {
description = "An opensource project that aims to create a Graphical UI to help manage Linux overlays";
homepage = "https://github.com/benjamimgois/goverlay";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ kira-bruneau ];
platforms = platforms.linux;
};
}