tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
projecteur: init at 0.9.2
Benedikt Tissot
3 years ago
1cc9cfa9
535df3ed
+34
2 changed files
expand all
collapse all
unified
split
pkgs
os-specific
linux
projecteur
default.nix
top-level
all-packages.nix
+32
pkgs/os-specific/linux/projecteur/default.nix
···
1
1
+
{ lib, mkDerivation, fetchFromGitHub,
2
2
+
cmake, pkg-config,
3
3
+
qtbase, qtgraphicaleffects, wrapQtAppsHook }:
4
4
+
mkDerivation rec {
5
5
+
pname = "projecteur";
6
6
+
version = "0.9.2";
7
7
+
8
8
+
src = fetchFromGitHub {
9
9
+
owner = "jahnf";
10
10
+
repo = "Projecteur";
11
11
+
rev = "v${version}";
12
12
+
fetchSubmodules = false;
13
13
+
sha256 = "sha256-kg6oYtJ4H5A6RNATBg+XvMfCb9FlhEBFjfxamGosMQg=";
14
14
+
};
15
15
+
16
16
+
buildInputs = [ qtbase qtgraphicaleffects ];
17
17
+
nativeBuildInputs = [ wrapQtAppsHook cmake pkg-config ];
18
18
+
19
19
+
cmakeFlags = [
20
20
+
"-DCMAKE_INSTALL_PREFIX:PATH=${placeholder "out"}"
21
21
+
"-DPACKAGE_TARGETS=OFF"
22
22
+
"-DCMAKE_INSTALL_UDEVRULESDIR=${placeholder "out"}/lib/udev/rules.d"
23
23
+
];
24
24
+
25
25
+
meta = with lib; {
26
26
+
description = "Linux/X11 application for the Logitech Spotlight device (and similar devices).";
27
27
+
homepage = "https://github.com/jahnf/Projecteur";
28
28
+
license = licenses.mit;
29
29
+
platforms = platforms.linux;
30
30
+
maintainers = with maintainers; [ benneti ];
31
31
+
};
32
32
+
}
+2
pkgs/top-level/all-packages.nix
···
22498
22498
22499
22499
powerstat = callPackage ../os-specific/linux/powerstat { };
22500
22500
22501
22501
+
projecteur = libsForQt5.callPackage ../os-specific/linux/projecteur { };
22502
22502
+
22501
22503
smemstat = callPackage ../os-specific/linux/smemstat { };
22502
22504
22503
22505
tgt = callPackage ../tools/networking/tgt { };