mqtt-dash/release.nix
2019-10-31 16:52:59 +01:00

10 lines
189 B
Nix

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