mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
bf995e3641
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{ lib
|
|
, mkDerivation
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, pkg-config
|
|
, qtbase
|
|
, qtgraphicaleffects
|
|
, wrapQtAppsHook
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "projecteur";
|
|
version = "0.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jahnf";
|
|
repo = "Projecteur";
|
|
rev = "v${version}";
|
|
fetchSubmodules = false;
|
|
hash = "sha256-F7o93rBjrDTmArTIz8RB/uGBOYE6ny/U7ppk+jEhM5A=";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed '1i#include <array>' -i src/device.h # gcc12
|
|
'';
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
qtgraphicaleffects
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_INSTALL_PREFIX:PATH=${placeholder "out"}"
|
|
"-DPACKAGE_TARGETS=OFF"
|
|
"-DCMAKE_INSTALL_UDEVRULESDIR=${placeholder "out"}/lib/udev/rules.d"
|
|
];
|
|
|
|
meta = {
|
|
description = "Linux/X11 application for the Logitech Spotlight device (and similar devices)";
|
|
homepage = "https://github.com/jahnf/Projecteur";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "projecteur";
|
|
maintainers = with lib.maintainers; [ benneti drupol ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|