mqtt-dash/release.nix
2019-10-31 18:47:07 +01:00

10 lines
165 B
Nix

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