Add illuminanced
This commit is contained in:
parent
770e354480
commit
27b349923e
2 changed files with 19 additions and 0 deletions
|
|
@ -18,6 +18,7 @@ in
|
|||
inherit (inputs.gomod2nix.legacyPackages.${system}) buildGoApplication;
|
||||
};
|
||||
fpvout = callPackage ./fpvout { };
|
||||
illuminanced = callPackage ./illuminanced { };
|
||||
mute-indicator = callPackage ./mute-indicator { };
|
||||
myintercom-doorbell = callPackage ./myintercom-doorbell {
|
||||
inherit poetry2nix;
|
||||
|
|
|
|||
18
pkgs/illuminanced/default.nix
Normal file
18
pkgs/illuminanced/default.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{ rustPlatform
|
||||
, fetchFromGitHub
|
||||
, pkgs
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage {
|
||||
pname = "illuminanced";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mikhail-m1";
|
||||
repo = "illuminanced";
|
||||
rev = "ee95f97dc1ed197abe3a7c4f3ad45121a077d3eb";
|
||||
sha256 = "sha256-dilApolbxgl//2YVbd4ITYVNwfCQQ8LPayqmmW5Jhv8=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-y0Fuzgjz7s9VD/cqMshU1LiytlXskTMZ6dlQsYtAvsk=";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue