nixpkgs/pkgs/os-specific/linux/usbrelay/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
778 B
Nix
Raw Normal View History

2022-05-08 22:16:32 +03:00
{ stdenv, lib, fetchFromGitHub, hidapi, installShellFiles }:
2022-03-30 00:54:42 +03:00
stdenv.mkDerivation rec {
pname = "usbrelay";
2022-05-08 22:16:32 +03:00
version = "1.0";
2022-03-30 00:54:42 +03:00
src = fetchFromGitHub {
owner = "darrylb123";
repo = "usbrelay";
rev = version;
2022-05-08 22:16:32 +03:00
sha256 = "sha256-5zgpN4a+r0tmw0ISTJM+d9mo+L/qwUvpWPSsykuG0cg=";
2022-03-30 00:54:42 +03:00
};
2022-05-08 22:16:32 +03:00
nativeBuildInputs = [
installShellFiles
];
2022-03-30 00:54:42 +03:00
buildInputs = [
hidapi
];
makeFlags = [
"DIR_VERSION=${version}"
"PREFIX=${placeholder "out"}"
];
2022-05-08 22:16:32 +03:00
postInstall = ''
installManPage usbrelay.1
'';
2022-03-30 00:54:42 +03:00
meta = with lib; {
description = "Tool to control USB HID relays";
homepage = "https://github.com/darrylb123/usbrelay";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ wentasah ];
platforms = platforms.linux;
};
}