Compare commits

..

1 Commits

Author SHA1 Message Date
b561c71bf2 Add release.nix 2019-10-31 16:29:31 +01:00
2 changed files with 6 additions and 3 deletions

View File

@ -1,5 +1,5 @@
{ python }: { pkgs ? (import <nixpkgs> {}) }:
with python.pkgs; with pkgs.python3Packages;
buildPythonPackage rec { buildPythonPackage rec {
name = "mqtt-dash"; name = "mqtt-dash";
src = ./.; src = ./.;

View File

@ -5,5 +5,8 @@
let let
pkgs = import <nixpkgs> { inherit system; }; pkgs = import <nixpkgs> { inherit system; };
in in
pkgs.callPackage ./. { python = pkgs.python3; }; pkgs.releaseTools.nixBuild {
name = "mqtt-dash";
src = <mqtt-dash-src>;
};
} }