forked from mirrors/nixpkgs
mbidled: init at unstable-2022-10-30
This commit is contained in:
parent
7686792af8
commit
41f5d8a1f4
39
pkgs/tools/networking/mbidled/default.nix
Normal file
39
pkgs/tools/networking/mbidled/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, meson
|
||||
, ninja
|
||||
, libev
|
||||
, openssl
|
||||
}:
|
||||
stdenv.mkDerivation {
|
||||
pname = "mbidled";
|
||||
version = "unstable-2022-10-30";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "zsugabubus";
|
||||
repo = "mbidled";
|
||||
rev = "b06152f015a470876b042e538804ebb1ac247c09";
|
||||
sha256 = "sha256-eHm10onJ7v6fhvJiGXZhuN3c9cj+NoVIW2XQb2fdmuA=";
|
||||
};
|
||||
|
||||
preConfigure = ''
|
||||
export LIBRARY_PATH=${libev}/lib
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
meson ninja
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libev openssl
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "run command on mailbox change";
|
||||
homepage = "https://github.com/zsugabubus/mbidled";
|
||||
license = licenses.unlicense;
|
||||
maintainers = with maintainers; [ laalsaas ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -1371,6 +1371,8 @@ with pkgs;
|
|||
|
||||
linux-router-without-wifi = linux-router.override { useWifiDependencies = false; };
|
||||
|
||||
mbidled = callPackage ../tools/networking/mbidled { };
|
||||
|
||||
metapixel = callPackage ../tools/graphics/metapixel { };
|
||||
|
||||
midimonster = callPackage ../tools/audio/midimonster { };
|
||||
|
|
Loading…
Reference in a new issue