Compare commits

..

1 Commits

Author SHA1 Message Date
0xee f75eee6b8a Add release.nix 2019-10-31 16:52:59 +01:00
2 changed files with 3 additions and 6 deletions

View File

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

View File

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