cask: use python3

This commit is contained in:
Frederik Rietdijk 2021-03-25 11:21:54 +01:00
parent f19233bea9
commit 344bce2431

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, python, emacs }:
{ lib, stdenv, fetchurl, python3, emacs }:
stdenv.mkDerivation rec {
pname = "cask";
@ -12,9 +12,11 @@ stdenv.mkDerivation rec {
s f dash ansi ecukes servant ert-runner el-mock
noflet ert-async shell-split-string git package-build
] ++ [
python
python3
];
strictDeps = true;
buildPhase = ''
emacs --batch -L . -f batch-byte-compile cask.el cask-cli.el
'';