r3ctl: init at a82cb5b3123224e706835407f21acea9dc7ab0f0

This commit is contained in:
Maciej Krüger 2022-11-11 23:11:42 +01:00
parent b4a57686c8
commit c0dab102f9
No known key found for this signature in database
GPG key ID: 0D948CE19CF49C5F
2 changed files with 52 additions and 0 deletions

View file

@ -0,0 +1,50 @@
{ lib
, qt5
, qtbase
, qtsvg
, qtx11extras
, qttools
, qtwebsockets
, qtmultimedia
, fetchFromGitHub
}:
qt5.mkDerivation rec {
pname = "r3ctl";
version = "a82cb5b3123224e706835407f21acea9dc7ab0f0";
src = fetchFromGitHub {
owner = "0xfeedc0de64";
repo = "r3ctl";
rev = "a82cb5b3123224e706835407f21acea9dc7ab0f0";
sha256 = "5/L8jvEDJGJzsuAxPrctSDS3d8lbFX/+f52OVyGQ/RY=";
};
buildPhase = ''
qmake .
make
'';
postInstall = ''
mv bin $out
'';
nativeBuildInputs = [
qt5.wrapQtAppsHook
];
buildInputs = [
qtbase
qttools
qtmultimedia
qtwebsockets
];
meta = with lib; {
description = "A cmdline tool to control the r3 hackerspace lights";
homepage = "https://github.com/0xfeedc0de64/r3ctl";
maintainers = with maintainers; [ mkg20001 ];
license = licenses.gpl3Only;
platforms = platforms.linux;
};
}

View file

@ -560,6 +560,8 @@ with pkgs;
riot-redis = callPackage ../development/tools/riot-redis { };
r3ctl = qt5.callPackage ../tools/misc/r3ctl { };
ptouch-print = callPackage ../misc/ptouch-print { };
demoit = callPackage ../servers/demoit { };