10 lines
189 B
Nix
10 lines
189 B
Nix
|
{
|
||
|
mqtt-dash =
|
||
|
{ system ? builtins.currentSystem }:
|
||
|
|
||
|
let
|
||
|
pkgs = import <nixpkgs> { inherit system; };
|
||
|
in
|
||
|
pkgs.callPackage ./. { python = pkgs.python3; };
|
||
|
}
|