3
0
Fork 0
forked from mirrors/nixpkgs
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
780 B
Nix
Raw Normal View History

2022-05-08 20:16:32 +01:00
{ stdenv, lib, fetchFromGitHub, hidapi, installShellFiles }:
2022-03-29 22:54:42 +01:00
stdenv.mkDerivation rec {
pname = "usbrelay";
2022-09-16 23:19:18 +01:00
version = "1.0.1";
2022-03-29 22:54:42 +01:00
src = fetchFromGitHub {
owner = "darrylb123";
repo = "usbrelay";
rev = version;
2022-09-16 23:19:18 +01:00
sha256 = "sha256-2elDrO+WaaRYdTrG40Ez00qSsNVQjXE6GdOJbWPfugE=";
2022-03-29 22:54:42 +01:00
};
2022-05-08 20:16:32 +01:00
nativeBuildInputs = [
installShellFiles
];
2022-03-29 22:54:42 +01:00
buildInputs = [
hidapi
];
makeFlags = [
"DIR_VERSION=${version}"
"PREFIX=${placeholder "out"}"
];
2022-05-08 20:16:32 +01:00
postInstall = ''
installManPage usbrelay.1
'';
2022-03-29 22:54:42 +01: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;
};
}