Compare commits

..

1 Commits

Author SHA1 Message Date
23e200cb0a Require python3 2019-10-31 18:17:06 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -5,5 +5,5 @@
let let
pkgs = import <nixpkgs> { inherit system; }; pkgs = import <nixpkgs> { inherit system; };
in in
pkgs.callPackage ./. {}; pkgs.callPackage ./. { python = pkgs.python3; };
} }

View File

@ -1,2 +1,2 @@
{ pkgs ? import <nixpkgs> {} }: { pkgs ? import <nixpkgs> {} }:
pkgs.callPackage ./. {} pkgs.callPackage ./. { python = pkgs.python3; }