r3ctl: init at a82cb5b3123224e706835407f21acea9dc7ab0f0
This commit is contained in:
parent
b4a57686c8
commit
c0dab102f9
2 changed files with 52 additions and 0 deletions
50
pkgs/tools/misc/r3ctl/default.nix
Normal file
50
pkgs/tools/misc/r3ctl/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue