Unverified Commit 8814493d authored by Maciej Krüger's avatar Maciej Krüger Committed by GitHub
Browse files

Merge pull request #200767 from mkg20001/r3

parents 48471731 c0dab102
Loading
Loading
Loading
Loading
+50 −0
Original line number Diff line number Diff line
{ 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;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };